代码生成器
parent
39d8ce2432
commit
c6b4e8fc7d
|
@ -5,6 +5,7 @@ import java.util.List;
|
|||
|
||||
import com.muyu.car.domain.SysCarMessage;
|
||||
import com.muyu.car.domain.SysMessageType;
|
||||
import com.muyu.car.domain.VO.SysMessageVO;
|
||||
import com.muyu.car.service.ISysCarMessageService;
|
||||
import jakarta.servlet.http.HttpServletResponse;
|
||||
import javax.annotation.Resource;
|
||||
|
@ -86,6 +87,15 @@ public class SysCarMessageController extends BaseController
|
|||
return Result.success(list);
|
||||
}
|
||||
|
||||
@RequiresPermissions("message:message:dobList")
|
||||
@GetMapping("/dobList")
|
||||
public Result<List<SysMessageVO>> dobList(SysMessageVO sysMessageVO)
|
||||
{
|
||||
List<SysMessageVO> list = sysCarMessageService.dobList(sysMessageVO);
|
||||
return Result.success(list);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 导出车辆报文记录列表
|
||||
*/
|
||||
|
|
|
@ -47,6 +47,9 @@ public class SysCarMessage {
|
|||
@Excel(name = "结束位下标")
|
||||
private String messageEndIndex;
|
||||
|
||||
/** 报文分类 */
|
||||
@Excel(name = "报文分类")
|
||||
private String messageType;
|
||||
|
||||
|
||||
@Override
|
||||
|
@ -57,6 +60,7 @@ public class SysCarMessage {
|
|||
.append("messageTypeCode", getMessageTypeCode())
|
||||
.append("messageStartIndex", getMessageStartIndex())
|
||||
.append("messageEndIndex", getMessageEndIndex())
|
||||
.append("messageType", getMessageType())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
package com.muyu.car.domain.VO;
|
||||
|
||||
import com.muyu.common.core.annotation.Excel;
|
||||
import lombok.*;
|
||||
|
||||
/**
|
||||
* 车辆报文类型对象 sys_message_type
|
||||
*
|
||||
* @author muyu
|
||||
* @date 2024-09-18
|
||||
*/
|
||||
|
||||
@Data
|
||||
public class SysMessageVO {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private Long id;
|
||||
|
||||
private String modelCode;
|
||||
private String messageTypeCode;
|
||||
private String messageStartIndex;
|
||||
private String messageEndIndex;
|
||||
private String messageType;
|
||||
|
||||
private String messageName;
|
||||
}
|
|
@ -4,6 +4,7 @@ import java.util.List;
|
|||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.muyu.car.domain.SysCarMessage;
|
||||
import com.muyu.car.domain.VO.SysMessageVO;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
|
@ -14,5 +15,5 @@ import org.apache.ibatis.annotations.Mapper;
|
|||
*/
|
||||
@Mapper
|
||||
public interface SysCarMessageMapper extends BaseMapper<SysCarMessage>{
|
||||
|
||||
List<SysMessageVO>dobList(SysMessageVO sysMessageVO);
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@ import java.util.List;
|
|||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.muyu.car.domain.SysCarMessage;
|
||||
import com.muyu.car.domain.VO.SysMessageVO;
|
||||
|
||||
/**
|
||||
* 车辆报文记录Service接口
|
||||
|
@ -12,6 +13,8 @@ import com.muyu.car.domain.SysCarMessage;
|
|||
* @date 2024-09-18
|
||||
*/
|
||||
public interface ISysCarMessageService extends IService<SysCarMessage> {
|
||||
|
||||
List<SysMessageVO>dobList(SysMessageVO sysMessageVO);
|
||||
/**
|
||||
* 精确查询车辆报文记录
|
||||
*
|
||||
|
|
|
@ -3,8 +3,10 @@ package com.muyu.car.service.impl;
|
|||
import java.util.List;
|
||||
|
||||
import com.muyu.car.domain.SysCarMessage;
|
||||
import com.muyu.car.domain.VO.SysMessageVO;
|
||||
import com.muyu.car.mapper.SysCarMessageMapper;
|
||||
import com.muyu.car.service.ISysCarMessageService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
|
@ -21,6 +23,13 @@ import org.springframework.util.Assert;
|
|||
public class SysCarMessageServiceImpl
|
||||
extends ServiceImpl<SysCarMessageMapper, SysCarMessage>
|
||||
implements ISysCarMessageService {
|
||||
@Autowired
|
||||
private SysCarMessageMapper mapper;
|
||||
|
||||
@Override
|
||||
public List<SysMessageVO> dobList(SysMessageVO sysMessageVO) {
|
||||
return mapper.dobList(sysMessageVO);
|
||||
}
|
||||
|
||||
/**
|
||||
* 精确查询车辆报文记录
|
||||
|
@ -51,6 +60,9 @@ public class SysCarMessageServiceImpl
|
|||
if (StringUtils.isNotEmpty(sysCarMessage.getModelCode())){
|
||||
queryWrapper.eq(SysCarMessage::getModelCode, sysCarMessage.getModelCode());
|
||||
}
|
||||
if (StringUtils.isNotEmpty(sysCarMessage.getMessageType())){
|
||||
queryWrapper.eq(SysCarMessage::getMessageType, sysCarMessage.getMessageType());
|
||||
}
|
||||
return this.list(queryWrapper);
|
||||
}
|
||||
|
||||
|
|
|
@ -27,6 +27,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<include refid="selectSysCarMessageVo"/>
|
||||
where id = #{id}
|
||||
</select>
|
||||
<select id="dobList" resultType="com.muyu.car.domain.VO.SysMessageVO">
|
||||
SELECT sys_car_message.*,sys_message_type.message_name FROM sys_car_message LEFT JOIN sys_message_type ON sys_message_type.message_code=sys_car_message.message_type_code
|
||||
<where>
|
||||
<if test="modelCode!=null and modelCode!=''">
|
||||
sys_car_message.model_code=#{modelCode}
|
||||
</if>
|
||||
<if test="messageType!=null and messageType!=''">
|
||||
sys_car_message.message_type=#{messageType}
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<insert id="insertSysCarMessage" parameterType="SysCarMessage" useGeneratedKeys="true" keyProperty="id">
|
||||
insert into sys_car_message
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -110,3 +110,275 @@
|
|||
10:51:06.187 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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}]
|
||||
10:51:06.674 [nacos-grpc-client-executor-49.235.136.60-900] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3f908755-a326-43db-888f-22fbb3b7396f] Receive server push request, request = NotifySubscriberRequest, requestId = 25451
|
||||
10:51:06.674 [nacos-grpc-client-executor-49.235.136.60-900] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3f908755-a326-43db-888f-22fbb3b7396f] Ack server push request, request = NotifySubscriberRequest, requestId = 25451
|
||||
16:17:53.641 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||
16:17:53.642 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wyh deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.182', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||
16:17:53.660 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||
16:17:53.661 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||
16:17:53.661 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||
16:17:53.661 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||
16:17:53.661 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||
16:17:53.661 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||
16:17:53.662 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||
16:17:53.662 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||
16:17:53.662 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||
16:17:53.662 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||
16:17:53.662 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||
16:17:53.662 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||
16:17:53.662 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->3f908755-a326-43db-888f-22fbb3b7396f
|
||||
16:17:53.662 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4652d9e0[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 8041]
|
||||
16:17:53.662 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||
16:17:53.662 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2edda207[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||
16:17:53.663 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726796095378_117.143.60.22_63775
|
||||
16:17:53.665 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@707d45d[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 4715]
|
||||
16:17:53.665 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->3f908755-a326-43db-888f-22fbb3b7396f
|
||||
16:17:53.665 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||
16:17:53.665 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||
16:17:53.665 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||
18:55:45.107 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||
18:55:47.326 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||
18:55:47.326 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||
18:55:47.402 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||
18:55:49.001 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||
18:55:52.356 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||
18:55:52.356 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||
18:55:52.357 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||
18:55:52.361 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||
18:55:52.364 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||
18:55:52.364 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||
18:55:52.518 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 21e9b0fe-3724-4296-ad86-406fec058669
|
||||
18:55:52.521 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->21e9b0fe-3724-4296-ad86-406fec058669
|
||||
18:55:52.521 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [21e9b0fe-3724-4296-ad86-406fec058669] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||
18:55:52.521 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [21e9b0fe-3724-4296-ad86-406fec058669] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||
18:55:52.522 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [21e9b0fe-3724-4296-ad86-406fec058669] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||
18:55:52.523 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [21e9b0fe-3724-4296-ad86-406fec058669] Try to connect to server on start up, server: {serverIp = '49.235.136.60', server main port = 8848}
|
||||
18:55:52.523 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:49.235.136.60 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
18:55:52.820 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [21e9b0fe-3724-4296-ad86-406fec058669] Success to connect to server [49.235.136.60:8848] on start up, connectionId = 1726829753245_117.143.60.22_61660
|
||||
18:55:52.820 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [21e9b0fe-3724-4296-ad86-406fec058669] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||
18:55:52.820 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [21e9b0fe-3724-4296-ad86-406fec058669] Notify connected event to listeners.
|
||||
18:55:52.820 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [21e9b0fe-3724-4296-ad86-406fec058669] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010ca7c8
|
||||
18:55:52.820 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
18:55:52.821 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wyh registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.182', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
|
||||
18:55:52.836 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.182:9500 register finished
|
||||
18:55:53.066 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 10.898 seconds (process running for 11.846)
|
||||
18:55:53.079 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||
18:55:53.080 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||
18:55:53.080 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+wyh
|
||||
18:55:53.090 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
|
||||
18:55:53.090 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
|
||||
18:55:53.091 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+wyh
|
||||
18:55:53.092 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
|
||||
18:55:53.092 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
|
||||
18:55:53.092 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-auth+DEFAULT_GROUP+wyh
|
||||
18:55:53.093 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
|
||||
18:55:53.093 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
|
||||
18:55:53.521 [RMI TCP Connection(4)-10.113.37.182] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
18:58:31.085 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
|
||||
18:58:31.085 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
|
||||
18:58:31.108 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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}]
|
||||
18:58:31.110 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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}]
|
||||
18:58:31.669 [nacos-grpc-client-executor-49.235.136.60-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [21e9b0fe-3724-4296-ad86-406fec058669] Receive server push request, request = NotifySubscriberRequest, requestId = 25478
|
||||
18:58:31.670 [nacos-grpc-client-executor-49.235.136.60-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [21e9b0fe-3724-4296-ad86-406fec058669] Ack server push request, request = NotifySubscriberRequest, requestId = 25478
|
||||
20:51:15.792 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||
20:51:15.792 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wyh deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.182', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||
20:51:15.908 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||
20:51:15.909 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||
20:51:15.909 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->21e9b0fe-3724-4296-ad86-406fec058669
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@6b4991d6[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 2276]
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@748655e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||
20:51:15.910 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726829753245_117.143.60.22_61660
|
||||
20:51:15.912 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@24407af0[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 1339]
|
||||
20:51:15.913 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->21e9b0fe-3724-4296-ad86-406fec058669
|
||||
20:51:15.913 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||
20:51:15.913 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||
20:51:15.914 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||
20:51:42.250 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||
20:51:44.961 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||
20:51:44.962 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||
20:51:45.120 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||
20:51:46.565 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||
20:51:49.671 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||
20:51:49.672 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||
20:51:49.672 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||
20:51:49.677 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||
20:51:49.681 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||
20:51:49.682 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||
20:51:49.984 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b1c8bc2c-7f5d-42f3-8cf1-8a79b65be72b
|
||||
20:51:49.986 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->b1c8bc2c-7f5d-42f3-8cf1-8a79b65be72b
|
||||
20:51:49.986 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1c8bc2c-7f5d-42f3-8cf1-8a79b65be72b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||
20:51:49.986 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1c8bc2c-7f5d-42f3-8cf1-8a79b65be72b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||
20:51:49.986 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1c8bc2c-7f5d-42f3-8cf1-8a79b65be72b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||
20:51:49.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1c8bc2c-7f5d-42f3-8cf1-8a79b65be72b] Try to connect to server on start up, server: {serverIp = '49.235.136.60', server main port = 8848}
|
||||
20:51:49.988 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:49.235.136.60 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
20:51:50.210 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1c8bc2c-7f5d-42f3-8cf1-8a79b65be72b] Success to connect to server [49.235.136.60:8848] on start up, connectionId = 1726836710801_117.143.60.22_53247
|
||||
20:51:50.210 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1c8bc2c-7f5d-42f3-8cf1-8a79b65be72b] Notify connected event to listeners.
|
||||
20:51:50.210 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1c8bc2c-7f5d-42f3-8cf1-8a79b65be72b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||
20:51:50.210 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
20:51:50.210 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1c8bc2c-7f5d-42f3-8cf1-8a79b65be72b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010c9c78
|
||||
20:51:50.212 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wyh registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.182', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
|
||||
20:51:50.233 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.182:9500 register finished
|
||||
20:51:50.462 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 11.343 seconds (process running for 12.246)
|
||||
20:51:50.475 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||
20:51:50.475 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||
20:51:50.475 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+wyh
|
||||
20:51:50.485 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
|
||||
20:51:50.485 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
|
||||
20:51:50.487 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+wyh
|
||||
20:51:50.487 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
|
||||
20:51:50.487 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
|
||||
20:51:50.488 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-auth+DEFAULT_GROUP+wyh
|
||||
20:51:50.488 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
|
||||
20:51:50.489 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
|
||||
20:51:50.746 [RMI TCP Connection(6)-10.113.37.182] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
20:52:06.653 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
|
||||
20:52:06.653 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
|
||||
20:52:06.674 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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:52:06.675 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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:52:07.275 [nacos-grpc-client-executor-49.235.136.60-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1c8bc2c-7f5d-42f3-8cf1-8a79b65be72b] Receive server push request, request = NotifySubscriberRequest, requestId = 25498
|
||||
20:52:07.276 [nacos-grpc-client-executor-49.235.136.60-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1c8bc2c-7f5d-42f3-8cf1-8a79b65be72b] Ack server push request, request = NotifySubscriberRequest, requestId = 25498
|
||||
20:56:41.015 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||
20:56:43.181 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||
20:56:43.181 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||
20:56:43.245 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||
20:56:44.521 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||
20:56:47.319 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||
20:56:47.319 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||
20:56:47.320 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||
20:56:47.325 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||
20:56:47.330 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||
20:56:47.330 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||
20:56:47.479 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b794a347-270f-46bf-a67f-2cb7296b153d
|
||||
20:56:47.481 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->b794a347-270f-46bf-a67f-2cb7296b153d
|
||||
20:56:47.481 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b794a347-270f-46bf-a67f-2cb7296b153d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||
20:56:47.482 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b794a347-270f-46bf-a67f-2cb7296b153d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||
20:56:47.482 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b794a347-270f-46bf-a67f-2cb7296b153d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||
20:56:47.482 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b794a347-270f-46bf-a67f-2cb7296b153d] Try to connect to server on start up, server: {serverIp = '49.235.136.60', server main port = 8848}
|
||||
20:56:47.483 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:49.235.136.60 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
20:56:47.694 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b794a347-270f-46bf-a67f-2cb7296b153d] Success to connect to server [49.235.136.60:8848] on start up, connectionId = 1726837008703_117.143.60.22_57520
|
||||
20:56:47.694 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b794a347-270f-46bf-a67f-2cb7296b153d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||
20:56:47.694 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b794a347-270f-46bf-a67f-2cb7296b153d] Notify connected event to listeners.
|
||||
20:56:47.694 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b794a347-270f-46bf-a67f-2cb7296b153d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010cb7a8
|
||||
20:56:47.694 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
20:56:47.696 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wyh registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.182', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
|
||||
20:56:47.756 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.182:9500 register finished
|
||||
20:56:47.945 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 9.944 seconds (process running for 11.018)
|
||||
20:56:47.956 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||
20:56:47.957 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||
20:56:47.957 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+wyh
|
||||
20:56:47.968 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
|
||||
20:56:47.969 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
|
||||
20:56:47.971 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+wyh
|
||||
20:56:47.971 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
|
||||
20:56:47.971 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
|
||||
20:56:47.972 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-auth+DEFAULT_GROUP+wyh
|
||||
20:56:47.972 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
|
||||
20:56:47.973 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
|
||||
20:56:48.365 [RMI TCP Connection(3)-10.113.37.182] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
20:58:03.951 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
|
||||
20:58:03.951 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
|
||||
20:58:04.046 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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:58:04.048 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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:58:04.681 [nacos-grpc-client-executor-49.235.136.60-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b794a347-270f-46bf-a67f-2cb7296b153d] Receive server push request, request = NotifySubscriberRequest, requestId = 25513
|
||||
20:58:04.681 [nacos-grpc-client-executor-49.235.136.60-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b794a347-270f-46bf-a67f-2cb7296b153d] Ack server push request, request = NotifySubscriberRequest, requestId = 25513
|
||||
22:10:52.873 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||
22:10:52.873 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wyh deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.182', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||
22:10:52.885 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||
22:10:52.886 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||
22:10:52.886 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||
22:10:52.886 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||
22:10:52.886 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||
22:10:52.886 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||
22:10:52.886 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||
22:10:52.886 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||
22:10:52.886 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||
22:10:52.886 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||
22:10:52.886 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||
22:10:52.886 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||
22:10:52.886 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->b794a347-270f-46bf-a67f-2cb7296b153d
|
||||
22:10:52.887 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3868b6a7[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1478]
|
||||
22:10:52.887 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||
22:10:52.887 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@60d1e1c4[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||
22:10:52.887 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726837008703_117.143.60.22_57520
|
||||
22:10:52.889 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@f55c5c3[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 873]
|
||||
22:10:52.889 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->b794a347-270f-46bf-a67f-2cb7296b153d
|
||||
22:10:52.889 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||
22:10:52.889 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||
22:10:52.890 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||
22:11:15.706 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||
22:11:18.092 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||
22:11:18.093 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||
22:11:18.172 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||
22:11:19.668 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||
22:11:22.879 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||
22:11:22.880 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||
22:11:22.880 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||
22:11:22.884 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||
22:11:22.887 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||
22:11:22.888 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||
22:11:23.020 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 8e5b2d04-279c-4028-b934-bea99b36cdb8
|
||||
22:11:23.022 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->8e5b2d04-279c-4028-b934-bea99b36cdb8
|
||||
22:11:23.022 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8e5b2d04-279c-4028-b934-bea99b36cdb8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||
22:11:23.022 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8e5b2d04-279c-4028-b934-bea99b36cdb8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||
22:11:23.023 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8e5b2d04-279c-4028-b934-bea99b36cdb8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||
22:11:23.023 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8e5b2d04-279c-4028-b934-bea99b36cdb8] Try to connect to server on start up, server: {serverIp = '49.235.136.60', server main port = 8848}
|
||||
22:11:23.023 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:49.235.136.60 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
22:11:23.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8e5b2d04-279c-4028-b934-bea99b36cdb8] Success to connect to server [49.235.136.60:8848] on start up, connectionId = 1726841484224_117.143.60.22_65039
|
||||
22:11:23.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8e5b2d04-279c-4028-b934-bea99b36cdb8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||
22:11:23.204 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8e5b2d04-279c-4028-b934-bea99b36cdb8] Notify connected event to listeners.
|
||||
22:11:23.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8e5b2d04-279c-4028-b934-bea99b36cdb8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010ca0f8
|
||||
22:11:23.204 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
22:11:23.206 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wyh registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.182', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
|
||||
22:11:23.229 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.182:9500 register finished
|
||||
22:11:23.437 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 10.702 seconds (process running for 11.611)
|
||||
22:11:23.447 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||
22:11:23.447 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||
22:11:23.448 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+wyh
|
||||
22:11:23.457 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1
|
||||
22:11:23.457 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP
|
||||
22:11:23.459 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+wyh
|
||||
22:11:23.460 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1
|
||||
22:11:23.460 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP
|
||||
22:11:23.461 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-auth+DEFAULT_GROUP+wyh
|
||||
22:11:23.461 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1
|
||||
22:11:23.462 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP
|
||||
22:11:23.929 [RMI TCP Connection(7)-10.113.37.182] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
22:11:49.519 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
|
||||
22:11:49.519 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
|
||||
22:11:49.544 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:49.546 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:50.153 [nacos-grpc-client-executor-49.235.136.60-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8e5b2d04-279c-4028-b934-bea99b36cdb8] Receive server push request, request = NotifySubscriberRequest, requestId = 25533
|
||||
22:11:50.153 [nacos-grpc-client-executor-49.235.136.60-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8e5b2d04-279c-4028-b934-bea99b36cdb8] Ack server push request, request = NotifySubscriberRequest, requestId = 25533
|
||||
22:40:59.934 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||
22:40:59.934 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wyh deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.182', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->8e5b2d04-279c-4028-b934-bea99b36cdb8
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7d233059[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 590]
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@261266de[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726841484224_117.143.60.22_65039
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1d324f62[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 367]
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->8e5b2d04-279c-4028-b934-bea99b36cdb8
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||
22:40:59.949 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -914,3 +914,606 @@ Caused by: java.net.ConnectException: Connection refused: no further information
|
|||
10:10:56.800 [nacos-grpc-client-executor-49.235.136.60-466] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.182","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,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
|
||||
10:10:56.800 [nacos-grpc-client-executor-49.235.136.60-466] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.182","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,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
|
||||
10:10:56.801 [nacos-grpc-client-executor-49.235.136.60-466] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec31d756-9706-4ada-99c5-641542b46d60] Ack server push request, request = NotifySubscriberRequest, requestId = 25450
|
||||
16:17:54.191 [nacos-grpc-client-executor-49.235.136.60-4959] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec31d756-9706-4ada-99c5-641542b46d60] Receive server push request, request = NotifySubscriberRequest, requestId = 25454
|
||||
16:17:54.193 [nacos-grpc-client-executor-49.235.136.60-4959] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.182","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}]
|
||||
16:17:54.193 [nacos-grpc-client-executor-49.235.136.60-4959] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> []
|
||||
16:17:54.194 [nacos-grpc-client-executor-49.235.136.60-4959] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec31d756-9706-4ada-99c5-641542b46d60] Ack server push request, request = NotifySubscriberRequest, requestId = 25454
|
||||
16:17:54.194 [nacos-grpc-client-executor-49.235.136.60-4960] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec31d756-9706-4ada-99c5-641542b46d60] Receive server push request, request = NotifySubscriberRequest, requestId = 25456
|
||||
16:17:54.194 [nacos-grpc-client-executor-49.235.136.60-4960] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.182","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}]
|
||||
16:17:54.194 [nacos-grpc-client-executor-49.235.136.60-4960] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> []
|
||||
16:17:54.194 [nacos-grpc-client-executor-49.235.136.60-4960] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ec31d756-9706-4ada-99c5-641542b46d60] Ack server push request, request = NotifySubscriberRequest, requestId = 25456
|
||||
16:17:55.748 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||
16:17:55.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wyh deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.182', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||
16:17:55.775 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||
16:17:55.776 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||
16:17:55.776 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->ec31d756-9706-4ada-99c5-641542b46d60
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@669242c9[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 8037]
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@f766544[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||
16:17:55.777 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726796108016_117.143.60.22_63860
|
||||
16:17:55.779 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@419d4d71[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 4963]
|
||||
16:17:55.779 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->ec31d756-9706-4ada-99c5-641542b46d60
|
||||
16:17:55.779 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||
16:17:55.779 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||
16:17:55.780 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||
18:56:09.383 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||
18:56:10.854 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"]
|
||||
18:56:10.856 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||
18:56:10.856 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||
18:56:10.914 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||
18:56:11.267 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||
18:56:13.449 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"]
|
||||
18:56:13.931 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||
18:56:13.932 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||
18:56:13.933 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||
18:56:13.939 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||
18:56:13.945 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||
18:56:13.945 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||
18:56:14.074 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 63c00ff2-7e26-44f1-b365-e5c0ec438bdc
|
||||
18:56:14.076 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->63c00ff2-7e26-44f1-b365-e5c0ec438bdc
|
||||
18:56:14.077 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||
18:56:14.077 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||
18:56:14.077 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||
18:56:14.078 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Try to connect to server on start up, server: {serverIp = '49.235.136.60', server main port = 8848}
|
||||
18:56:14.078 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:49.235.136.60 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
18:56:14.247 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Success to connect to server [49.235.136.60:8848] on start up, connectionId = 1726829774782_117.143.60.22_61803
|
||||
18:56:14.248 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Notify connected event to listeners.
|
||||
18:56:14.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||
18:56:14.248 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
18:56:14.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801061040
|
||||
18:56:14.249 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wyh registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.182', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
|
||||
18:56:14.391 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.182:9101 register finished
|
||||
18:56:14.419 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters:
|
||||
18:56:14.420 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster:
|
||||
18:56:14.456 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.182","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}]
|
||||
18:56:14.469 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.182","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}]
|
||||
18:56:14.705 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters:
|
||||
18:56:14.705 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster:
|
||||
18:56:14.741 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.182","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}]
|
||||
18:56:14.741 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.182","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}]
|
||||
18:56:14.747 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters:
|
||||
18:56:14.748 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster:
|
||||
18:56:14.763 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.182","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}]
|
||||
18:56:14.764 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.182","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}]
|
||||
18:56:14.772 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters:
|
||||
18:56:14.773 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster:
|
||||
18:56:14.788 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.182","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}]
|
||||
18:56:14.789 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.182","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}]
|
||||
18:56:14.798 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters:
|
||||
18:56:14.798 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster:
|
||||
18:56:14.819 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.182","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}]
|
||||
18:56:14.824 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.182","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}]
|
||||
18:56:14.841 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler.
|
||||
18:56:14.877 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 8.659 seconds (process running for 9.166)
|
||||
18:56:14.893 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||
18:56:14.893 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||
18:56:14.894 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+wyh
|
||||
18:56:14.895 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1
|
||||
18:56:14.896 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP
|
||||
18:56:14.897 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+wyh
|
||||
18:56:14.897 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1
|
||||
18:56:14.897 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP
|
||||
18:56:14.899 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+wyh
|
||||
18:56:14.900 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1
|
||||
18:56:14.900 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP
|
||||
18:56:14.945 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
18:56:15.007 [nacos-grpc-client-executor-49.235.136.60-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Receive server push request, request = NotifySubscriberRequest, requestId = 25464
|
||||
18:56:15.008 [nacos-grpc-client-executor-49.235.136.60-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Ack server push request, request = NotifySubscriberRequest, requestId = 25464
|
||||
18:56:15.015 [nacos-grpc-client-executor-49.235.136.60-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Receive server push request, request = NotifySubscriberRequest, requestId = 25465
|
||||
18:56:15.016 [nacos-grpc-client-executor-49.235.136.60-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Ack server push request, request = NotifySubscriberRequest, requestId = 25465
|
||||
18:56:15.291 [nacos-grpc-client-executor-49.235.136.60-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Receive server push request, request = NotifySubscriberRequest, requestId = 25466
|
||||
18:56:15.292 [nacos-grpc-client-executor-49.235.136.60-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Ack server push request, request = NotifySubscriberRequest, requestId = 25466
|
||||
18:56:15.297 [nacos-grpc-client-executor-49.235.136.60-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Receive server push request, request = NotifySubscriberRequest, requestId = 25467
|
||||
18:56:15.298 [nacos-grpc-client-executor-49.235.136.60-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Ack server push request, request = NotifySubscriberRequest, requestId = 25467
|
||||
18:56:15.389 [nacos-grpc-client-executor-49.235.136.60-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Receive server push request, request = NotifySubscriberRequest, requestId = 25468
|
||||
18:56:15.390 [nacos-grpc-client-executor-49.235.136.60-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Ack server push request, request = NotifySubscriberRequest, requestId = 25468
|
||||
18:56:44.898 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters:
|
||||
18:56:44.898 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster:
|
||||
18:56:44.931 [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.182","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,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
|
||||
18:56:44.931 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.182","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,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
|
||||
18:56:44.935 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
|
||||
18:56:44.935 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
|
||||
18:56:44.978 [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.182","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}]
|
||||
18:56:44.978 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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}]
|
||||
18:56:45.447 [nacos-grpc-client-executor-49.235.136.60-35] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Receive server push request, request = NotifySubscriberRequest, requestId = 25472
|
||||
18:56:45.447 [nacos-grpc-client-executor-49.235.136.60-35] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Ack server push request, request = NotifySubscriberRequest, requestId = 25472
|
||||
18:56:45.549 [nacos-grpc-client-executor-49.235.136.60-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Receive server push request, request = NotifySubscriberRequest, requestId = 25473
|
||||
18:56:45.549 [nacos-grpc-client-executor-49.235.136.60-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Ack server push request, request = NotifySubscriberRequest, requestId = 25473
|
||||
18:57:35.171 [nacos-grpc-client-executor-49.235.136.60-49] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Receive server push request, request = NotifySubscriberRequest, requestId = 25475
|
||||
18:57:35.172 [nacos-grpc-client-executor-49.235.136.60-49] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.182","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,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
|
||||
18:57:35.172 [nacos-grpc-client-executor-49.235.136.60-49] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> []
|
||||
18:57:35.173 [nacos-grpc-client-executor-49.235.136.60-49] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Ack server push request, request = NotifySubscriberRequest, requestId = 25475
|
||||
18:57:44.368 [reactor-http-nio-10] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=9e2b1169fca6, version=2, registration=Registration(name=cloud-car, managementUrl=http://10.113.37.182:10010/actuator, healthUrl=http://10.113.37.182:10010/actuator/health, serviceUrl=http://10.113.37.182:10010, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-20T10:56:45.093224200Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.182:10010/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.182:10010/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.182:10010/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.182:10010/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.182:10010/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.182:10010/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.182:10010/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.182:10010/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.182:10010/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.182:10010/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.182:10010/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.182:10010/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.182:10010/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.182:10010/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.182:10010/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.182:10010/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.182:10010/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.182:10010/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.182:10010/actuator/info)}), buildVersion=null, tags=Tags(values={}))
|
||||
org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /10.113.37.182:10010
|
||||
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:833)
|
||||
Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /10.113.37.182:10010
|
||||
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)
|
||||
18:57:45.079 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '9e2b1169fca6' missing in DiscoveryClient services and will be removed.
|
||||
18:57:50.752 [nacos-grpc-client-executor-49.235.136.60-53] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Receive server push request, request = NotifySubscriberRequest, requestId = 25477
|
||||
18:57:50.752 [nacos-grpc-client-executor-49.235.136.60-53] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.182","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,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
|
||||
18:57:50.753 [nacos-grpc-client-executor-49.235.136.60-53] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.182","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,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
|
||||
18:57:50.754 [nacos-grpc-client-executor-49.235.136.60-53] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Ack server push request, request = NotifySubscriberRequest, requestId = 25477
|
||||
20:51:16.399 [nacos-grpc-client-executor-49.235.136.60-1443] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Receive server push request, request = NotifySubscriberRequest, requestId = 25480
|
||||
20:51:16.399 [nacos-grpc-client-executor-49.235.136.60-1443] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.182","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:51:16.399 [nacos-grpc-client-executor-49.235.136.60-1443] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> []
|
||||
20:51:16.401 [nacos-grpc-client-executor-49.235.136.60-1443] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Ack server push request, request = NotifySubscriberRequest, requestId = 25480
|
||||
20:51:16.402 [nacos-grpc-client-executor-49.235.136.60-1444] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Receive server push request, request = NotifySubscriberRequest, requestId = 25482
|
||||
20:51:16.402 [nacos-grpc-client-executor-49.235.136.60-1444] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.182","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:51:16.402 [nacos-grpc-client-executor-49.235.136.60-1444] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> []
|
||||
20:51:16.403 [nacos-grpc-client-executor-49.235.136.60-1444] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [63c00ff2-7e26-44f1-b365-e5c0ec438bdc] Ack server push request, request = NotifySubscriberRequest, requestId = 25482
|
||||
20:51:17.890 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||
20:51:17.891 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wyh deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.182', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||
20:51:17.913 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||
20:51:17.913 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||
20:51:17.913 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->63c00ff2-7e26-44f1-b365-e5c0ec438bdc
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@43c60b32[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 2269]
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3a73be2b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||
20:51:17.914 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726829774782_117.143.60.22_61803
|
||||
20:51:17.920 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@38f30b38[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 1446]
|
||||
20:51:17.920 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->63c00ff2-7e26-44f1-b365-e5c0ec438bdc
|
||||
20:51:17.920 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||
20:51:17.921 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||
20:51:17.921 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||
20:51:58.266 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||
20:51:59.376 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"]
|
||||
20:51:59.378 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||
20:51:59.378 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||
20:51:59.437 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||
20:51:59.741 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||
20:52:01.375 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"]
|
||||
20:52:01.568 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||
20:52:01.568 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||
20:52:01.568 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||
20:52:01.571 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||
20:52:01.574 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||
20:52:01.575 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||
20:52:01.709 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 5961be53-2848-4e6a-aab2-872f6ba47403
|
||||
20:52:01.711 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->5961be53-2848-4e6a-aab2-872f6ba47403
|
||||
20:52:01.711 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||
20:52:01.711 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||
20:52:01.712 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||
20:52:01.712 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Try to connect to server on start up, server: {serverIp = '49.235.136.60', server main port = 8848}
|
||||
20:52:01.712 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:49.235.136.60 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
20:52:01.890 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Success to connect to server [49.235.136.60:8848] on start up, connectionId = 1726836722451_117.143.60.22_53347
|
||||
20:52:01.890 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||
20:52:01.890 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Notify connected event to listeners.
|
||||
20:52:01.890 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801061878
|
||||
20:52:01.890 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
20:52:01.891 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wyh registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.182', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
|
||||
20:52:01.912 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.182:9101 register finished
|
||||
20:52:01.932 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters:
|
||||
20:52:01.933 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster:
|
||||
20:52:01.993 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.182","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:52:02.002 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.182","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:52:02.147 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters:
|
||||
20:52:02.147 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster:
|
||||
20:52:02.175 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.182","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:52:02.176 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.182","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:52:02.181 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
|
||||
20:52:02.181 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
|
||||
20:52:02.193 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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:52:02.193 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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:52:02.198 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters:
|
||||
20:52:02.198 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster:
|
||||
20:52:02.218 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.182","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:52:02.219 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.182","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:52:02.226 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters:
|
||||
20:52:02.227 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster:
|
||||
20:52:02.246 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.182","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:52:02.250 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.182","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:52:02.256 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters:
|
||||
20:52:02.257 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster:
|
||||
20:52:02.280 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.182","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:52:02.281 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.182","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:52:02.288 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters:
|
||||
20:52:02.288 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster:
|
||||
20:52:02.300 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> []
|
||||
20:52:02.301 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> []
|
||||
20:52:02.306 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler.
|
||||
20:52:02.330 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 7.122 seconds (process running for 7.716)
|
||||
20:52:02.338 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||
20:52:02.338 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||
20:52:02.339 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+wyh
|
||||
20:52:02.340 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1
|
||||
20:52:02.341 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP
|
||||
20:52:02.341 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+wyh
|
||||
20:52:02.342 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1
|
||||
20:52:02.342 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP
|
||||
20:52:02.343 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+wyh
|
||||
20:52:02.343 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1
|
||||
20:52:02.343 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP
|
||||
20:52:02.445 [nacos-grpc-client-executor-49.235.136.60-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Receive server push request, request = NotifySubscriberRequest, requestId = 25491
|
||||
20:52:02.447 [nacos-grpc-client-executor-49.235.136.60-22] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.182","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:52:02.448 [nacos-grpc-client-executor-49.235.136.60-22] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.182","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:52:02.450 [nacos-grpc-client-executor-49.235.136.60-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Ack server push request, request = NotifySubscriberRequest, requestId = 25491
|
||||
20:52:02.466 [RMI TCP Connection(2)-10.113.37.182] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
20:52:02.525 [nacos-grpc-client-executor-49.235.136.60-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Receive server push request, request = NotifySubscriberRequest, requestId = 25492
|
||||
20:52:02.526 [nacos-grpc-client-executor-49.235.136.60-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Ack server push request, request = NotifySubscriberRequest, requestId = 25492
|
||||
20:52:02.723 [nacos-grpc-client-executor-49.235.136.60-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Receive server push request, request = NotifySubscriberRequest, requestId = 25493
|
||||
20:52:02.724 [nacos-grpc-client-executor-49.235.136.60-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Ack server push request, request = NotifySubscriberRequest, requestId = 25493
|
||||
20:52:02.727 [nacos-grpc-client-executor-49.235.136.60-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Receive server push request, request = NotifySubscriberRequest, requestId = 25494
|
||||
20:52:02.727 [nacos-grpc-client-executor-49.235.136.60-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Ack server push request, request = NotifySubscriberRequest, requestId = 25494
|
||||
20:52:02.729 [nacos-grpc-client-executor-49.235.136.60-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Receive server push request, request = NotifySubscriberRequest, requestId = 25495
|
||||
20:52:02.730 [nacos-grpc-client-executor-49.235.136.60-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Ack server push request, request = NotifySubscriberRequest, requestId = 25495
|
||||
20:52:02.830 [nacos-grpc-client-executor-49.235.136.60-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Receive server push request, request = NotifySubscriberRequest, requestId = 25496
|
||||
20:52:02.830 [nacos-grpc-client-executor-49.235.136.60-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Ack server push request, request = NotifySubscriberRequest, requestId = 25496
|
||||
20:52:02.833 [nacos-grpc-client-executor-49.235.136.60-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Receive server push request, request = NotifySubscriberRequest, requestId = 25497
|
||||
20:52:02.834 [nacos-grpc-client-executor-49.235.136.60-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5961be53-2848-4e6a-aab2-872f6ba47403] Ack server push request, request = NotifySubscriberRequest, requestId = 25497
|
||||
20:57:01.748 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||
20:57:03.305 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"]
|
||||
20:57:03.307 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||
20:57:03.307 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||
20:57:03.378 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||
20:57:03.775 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||
20:57:06.198 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"]
|
||||
20:57:06.484 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||
20:57:06.485 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||
20:57:06.486 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||
20:57:06.492 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||
20:57:06.496 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||
20:57:06.497 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||
20:57:06.728 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96
|
||||
20:57:06.730 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96
|
||||
20:57:06.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||
20:57:06.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||
20:57:06.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||
20:57:06.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Try to connect to server on start up, server: {serverIp = '49.235.136.60', server main port = 8848}
|
||||
20:57:06.731 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:49.235.136.60 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
20:57:07.006 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Success to connect to server [49.235.136.60:8848] on start up, connectionId = 1726837027995_117.143.60.22_57676
|
||||
20:57:07.006 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Notify connected event to listeners.
|
||||
20:57:07.006 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||
20:57:07.007 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
20:57:07.007 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x00000008010627c8
|
||||
20:57:07.008 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wyh registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.182', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
|
||||
20:57:07.037 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.182:9101 register finished
|
||||
20:57:07.108 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters:
|
||||
20:57:07.108 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster:
|
||||
20:57:07.136 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.182","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:57:07.147 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.182","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:57:07.330 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters:
|
||||
20:57:07.331 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster:
|
||||
20:57:07.433 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.182","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}]
|
||||
20:57:07.433 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.182","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}]
|
||||
20:57:07.437 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters:
|
||||
20:57:07.438 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster:
|
||||
20:57:07.503 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.182","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:57:07.503 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.182","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:57:07.508 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters:
|
||||
20:57:07.508 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster:
|
||||
20:57:07.549 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.182","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:57:07.550 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.182","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:57:07.557 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters:
|
||||
20:57:07.557 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster:
|
||||
20:57:07.635 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.182","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}]
|
||||
20:57:07.637 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.182","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}]
|
||||
20:57:07.646 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler.
|
||||
20:57:07.666 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 9.235 seconds (process running for 9.844)
|
||||
20:57:07.676 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||
20:57:07.677 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||
20:57:07.677 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+wyh
|
||||
20:57:07.679 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1
|
||||
20:57:07.679 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP
|
||||
20:57:07.679 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+wyh
|
||||
20:57:07.679 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1
|
||||
20:57:07.680 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP
|
||||
20:57:07.681 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+wyh
|
||||
20:57:07.681 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1
|
||||
20:57:07.681 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP
|
||||
20:57:07.707 [http-nio-9101-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
20:57:07.857 [nacos-grpc-client-executor-49.235.136.60-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Receive server push request, request = NotifySubscriberRequest, requestId = 25503
|
||||
20:57:07.858 [nacos-grpc-client-executor-49.235.136.60-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Ack server push request, request = NotifySubscriberRequest, requestId = 25503
|
||||
20:57:08.079 [nacos-grpc-client-executor-49.235.136.60-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Receive server push request, request = NotifySubscriberRequest, requestId = 25504
|
||||
20:57:08.080 [nacos-grpc-client-executor-49.235.136.60-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Ack server push request, request = NotifySubscriberRequest, requestId = 25504
|
||||
20:57:08.083 [nacos-grpc-client-executor-49.235.136.60-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Receive server push request, request = NotifySubscriberRequest, requestId = 25505
|
||||
20:57:08.083 [nacos-grpc-client-executor-49.235.136.60-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Ack server push request, request = NotifySubscriberRequest, requestId = 25505
|
||||
20:57:08.133 [nacos-grpc-client-executor-49.235.136.60-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Receive server push request, request = NotifySubscriberRequest, requestId = 25507
|
||||
20:57:08.134 [nacos-grpc-client-executor-49.235.136.60-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Ack server push request, request = NotifySubscriberRequest, requestId = 25507
|
||||
20:57:08.137 [nacos-grpc-client-executor-49.235.136.60-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Receive server push request, request = NotifySubscriberRequest, requestId = 25506
|
||||
20:57:08.137 [nacos-grpc-client-executor-49.235.136.60-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Ack server push request, request = NotifySubscriberRequest, requestId = 25506
|
||||
20:57:37.908 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters:
|
||||
20:57:37.908 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster:
|
||||
20:57:37.925 [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.182","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,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
|
||||
20:57:37.926 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.182","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,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}]
|
||||
20:57:37.932 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
|
||||
20:57:37.932 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
|
||||
20:57:37.951 [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.182","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:57:37.951 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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:57:38.580 [nacos-grpc-client-executor-49.235.136.60-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Receive server push request, request = NotifySubscriberRequest, requestId = 25511
|
||||
20:57:38.581 [nacos-grpc-client-executor-49.235.136.60-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Ack server push request, request = NotifySubscriberRequest, requestId = 25511
|
||||
20:57:38.583 [nacos-grpc-client-executor-49.235.136.60-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Receive server push request, request = NotifySubscriberRequest, requestId = 25512
|
||||
20:57:38.583 [nacos-grpc-client-executor-49.235.136.60-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Ack server push request, request = NotifySubscriberRequest, requestId = 25512
|
||||
21:10:14.191 [parallel-4] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=cb6ed6efa7f2, version=2, registration=Registration(name=cloud-gen, managementUrl=http://10.113.37.182:9202/actuator, healthUrl=http://10.113.37.182:9202/actuator/health, serviceUrl=http://10.113.37.182:9202, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-20T12:57:07.872895Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.182:9202/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.182:9202/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.182:9202/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.182:9202/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.182:9202/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.182:9202/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.182:9202/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.182:9202/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.182:9202/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.182:9202/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.182:9202/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.182:9202/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.182:9202/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.182:9202/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.182:9202/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.182:9202/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.182:9202/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.182:9202/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.182: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)
|
||||
21:10:44.185 [parallel-2] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=a0f285553426, version=2, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.182:9701/actuator, healthUrl=http://10.113.37.182:9701/actuator/health, serviceUrl=http://10.113.37.182:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-20T12:57:38.278033600Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.182:9701/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.182:9701/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.182:9701/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.182:9701/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.182:9701/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.182:9701/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.182:9701/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.182:9701/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.182:9701/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.182:9701/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.182:9701/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.182:9701/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.182:9701/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.182:9701/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.182:9701/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.182:9701/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.182:9701/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.182:9701/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.182: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)
|
||||
21:10:44.185 [parallel-4] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=9e2b1169fca6, version=2, registration=Registration(name=cloud-car, managementUrl=http://10.113.37.182:10010/actuator, healthUrl=http://10.113.37.182:10010/actuator/health, serviceUrl=http://10.113.37.182:10010, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-20T12:57:38.278033600Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.182:10010/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.182:10010/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.182:10010/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.182:10010/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.182:10010/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.182:10010/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.182:10010/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.182:10010/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.182:10010/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.182:10010/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.182:10010/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.182:10010/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.182:10010/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.182:10010/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.182:10010/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.182:10010/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.182:10010/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.182:10010/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.182:10010/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)
|
||||
22:10:53.630 [nacos-grpc-client-executor-49.235.136.60-941] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Receive server push request, request = NotifySubscriberRequest, requestId = 25514
|
||||
22:10:53.631 [nacos-grpc-client-executor-49.235.136.60-941] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.182","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}]
|
||||
22:10:53.631 [nacos-grpc-client-executor-49.235.136.60-941] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> []
|
||||
22:10:53.632 [nacos-grpc-client-executor-49.235.136.60-941] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Ack server push request, request = NotifySubscriberRequest, requestId = 25514
|
||||
22:10:53.634 [nacos-grpc-client-executor-49.235.136.60-942] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Receive server push request, request = NotifySubscriberRequest, requestId = 25516
|
||||
22:10:53.634 [nacos-grpc-client-executor-49.235.136.60-942] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.182","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}]
|
||||
22:10:53.635 [nacos-grpc-client-executor-49.235.136.60-942] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> []
|
||||
22:10:53.635 [nacos-grpc-client-executor-49.235.136.60-942] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96] Ack server push request, request = NotifySubscriberRequest, requestId = 25516
|
||||
22:10:54.938 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||
22:10:54.938 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wyh deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.182', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||
22:10:54.952 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||
22:10:54.953 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||
22:10:54.953 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||
22:10:54.953 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||
22:10:54.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||
22:10:54.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||
22:10:54.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||
22:10:54.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||
22:10:54.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||
22:10:54.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||
22:10:54.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||
22:10:54.954 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||
22:10:54.955 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96
|
||||
22:10:54.955 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4ef3dff1[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1472]
|
||||
22:10:54.955 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||
22:10:54.955 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@529984c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||
22:10:54.955 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726837027995_117.143.60.22_57676
|
||||
22:10:54.959 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@236f0902[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 944]
|
||||
22:10:54.959 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->bcf5234e-bffd-4a9f-9bb3-b92e0b9f5d96
|
||||
22:10:54.960 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||
22:10:54.960 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||
22:10:54.961 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||
22:11:32.059 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||
22:11:33.134 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"]
|
||||
22:11:33.136 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||
22:11:33.136 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||
22:11:33.181 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||
22:11:33.495 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||
22:11:34.915 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"]
|
||||
22:11:35.104 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||
22:11:35.105 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||
22:11:35.105 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||
22:11:35.108 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||
22:11:35.111 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||
22:11:35.111 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||
22:11:35.230 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of c2ecc9fd-c589-4538-81f7-ad54537bf46a
|
||||
22:11:35.232 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->c2ecc9fd-c589-4538-81f7-ad54537bf46a
|
||||
22:11:35.233 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||
22:11:35.233 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||
22:11:35.233 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||
22:11:35.233 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Try to connect to server on start up, server: {serverIp = '49.235.136.60', server main port = 8848}
|
||||
22:11:35.233 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:49.235.136.60 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||
22:11:35.379 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Success to connect to server [49.235.136.60:8848] on start up, connectionId = 1726841496424_117.143.60.22_65153
|
||||
22:11:35.379 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||
22:11:35.380 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Notify connected event to listeners.
|
||||
22:11:35.380 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801061230
|
||||
22:11:35.380 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||
22:11:35.381 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] wyh registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.182', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
|
||||
22:11:35.405 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.182:9101 register finished
|
||||
22:11:35.429 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters:
|
||||
22:11:35.429 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster:
|
||||
22:11:35.450 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.182","port":10010,"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}]
|
||||
22:11:35.458 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.182","port":10010,"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}]
|
||||
22:11:35.585 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters:
|
||||
22:11:35.585 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster:
|
||||
22:11:35.596 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:35.597 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:35.601 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters:
|
||||
22:11:35.602 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster:
|
||||
22:11:35.617 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:35.618 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:35.623 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters:
|
||||
22:11:35.623 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster:
|
||||
22:11:35.634 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:35.635 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:35.642 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters:
|
||||
22:11:35.642 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster:
|
||||
22:11:35.657 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:35.661 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:35.666 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters:
|
||||
22:11:35.666 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster:
|
||||
22:11:35.680 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:35.681 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:35.688 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters:
|
||||
22:11:35.688 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster:
|
||||
22:11:35.727 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> []
|
||||
22:11:35.728 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> []
|
||||
22:11:35.732 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler.
|
||||
22:11:35.754 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 6.494 seconds (process running for 7.019)
|
||||
22:11:35.766 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||
22:11:35.766 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||
22:11:35.767 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+wyh
|
||||
22:11:35.768 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1
|
||||
22:11:35.769 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP
|
||||
22:11:35.769 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+wyh
|
||||
22:11:35.769 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1
|
||||
22:11:35.770 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP
|
||||
22:11:35.771 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-wyh-49.235.136.60_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+wyh
|
||||
22:11:35.771 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-wyh-49.235.136.60_8848] [add-listener] ok, tenant=wyh, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1
|
||||
22:11:35.771 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP
|
||||
22:11:35.956 [RMI TCP Connection(5)-10.113.37.182] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
22:11:35.998 [nacos-grpc-client-executor-49.235.136.60-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Receive server push request, request = NotifySubscriberRequest, requestId = 25526
|
||||
22:11:35.999 [nacos-grpc-client-executor-49.235.136.60-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Ack server push request, request = NotifySubscriberRequest, requestId = 25526
|
||||
22:11:36.010 [nacos-grpc-client-executor-49.235.136.60-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Receive server push request, request = NotifySubscriberRequest, requestId = 25527
|
||||
22:11:36.010 [nacos-grpc-client-executor-49.235.136.60-19] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:36.011 [nacos-grpc-client-executor-49.235.136.60-19] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.182","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}]
|
||||
22:11:36.012 [nacos-grpc-client-executor-49.235.136.60-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Ack server push request, request = NotifySubscriberRequest, requestId = 25527
|
||||
22:11:36.286 [nacos-grpc-client-executor-49.235.136.60-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Receive server push request, request = NotifySubscriberRequest, requestId = 25528
|
||||
22:11:36.286 [nacos-grpc-client-executor-49.235.136.60-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Ack server push request, request = NotifySubscriberRequest, requestId = 25528
|
||||
22:11:36.288 [nacos-grpc-client-executor-49.235.136.60-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Receive server push request, request = NotifySubscriberRequest, requestId = 25529
|
||||
22:11:36.289 [nacos-grpc-client-executor-49.235.136.60-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Ack server push request, request = NotifySubscriberRequest, requestId = 25529
|
||||
22:11:36.293 [nacos-grpc-client-executor-49.235.136.60-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Receive server push request, request = NotifySubscriberRequest, requestId = 25530
|
||||
22:11:36.293 [nacos-grpc-client-executor-49.235.136.60-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Ack server push request, request = NotifySubscriberRequest, requestId = 25530
|
||||
22:11:36.298 [nacos-grpc-client-executor-49.235.136.60-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Receive server push request, request = NotifySubscriberRequest, requestId = 25531
|
||||
22:11:36.298 [nacos-grpc-client-executor-49.235.136.60-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Ack server push request, request = NotifySubscriberRequest, requestId = 25531
|
||||
22:11:36.314 [nacos-grpc-client-executor-49.235.136.60-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Receive server push request, request = NotifySubscriberRequest, requestId = 25532
|
||||
22:11:36.315 [nacos-grpc-client-executor-49.235.136.60-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Ack server push request, request = NotifySubscriberRequest, requestId = 25532
|
||||
22:41:00.457 [nacos-grpc-client-executor-49.235.136.60-384] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Receive server push request, request = NotifySubscriberRequest, requestId = 25535
|
||||
22:41:00.457 [nacos-grpc-client-executor-49.235.136.60-384] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.182","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}]
|
||||
22:41:00.457 [nacos-grpc-client-executor-49.235.136.60-384] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> []
|
||||
22:41:00.473 [nacos-grpc-client-executor-49.235.136.60-384] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Ack server push request, request = NotifySubscriberRequest, requestId = 25535
|
||||
22:41:00.473 [nacos-grpc-client-executor-49.235.136.60-385] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Receive server push request, request = NotifySubscriberRequest, requestId = 25537
|
||||
22:41:00.473 [nacos-grpc-client-executor-49.235.136.60-385] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.182","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}]
|
||||
22:41:00.473 [nacos-grpc-client-executor-49.235.136.60-385] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> []
|
||||
22:41:00.473 [nacos-grpc-client-executor-49.235.136.60-385] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c2ecc9fd-c589-4538-81f7-ad54537bf46a] Ack server push request, request = NotifySubscriberRequest, requestId = 25537
|
||||
22:41:02.037 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||
22:41:02.038 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] wyh deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.182', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||
22:41:02.051 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||
22:41:02.052 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||
22:41:02.052 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||
22:41:02.052 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||
22:41:02.052 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||
22:41:02.052 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||
22:41:02.052 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||
22:41:02.052 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||
22:41:02.052 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||
22:41:02.053 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||
22:41:02.053 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||
22:41:02.053 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||
22:41:02.053 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->c2ecc9fd-c589-4538-81f7-ad54537bf46a
|
||||
22:41:02.053 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@724c2989[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 587]
|
||||
22:41:02.053 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||
22:41:02.053 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2c92f302[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||
22:41:02.053 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726841496424_117.143.60.22_65153
|
||||
22:41:02.056 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6d849ce4[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 387]
|
||||
22:41:02.056 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->c2ecc9fd-c589-4538-81f7-ad54537bf46a
|
||||
22:41:02.056 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||
22:41:02.056 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||
22:41:02.056 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||
|
|
Loading…
Reference in New Issue