From ccfecae5848ca605cdd1d93d4d06b97fee8883ef Mon Sep 17 00:00:00 2001 From: yuhaiming <40624989@qq.com> Date: Sat, 9 May 2026 10:17:44 +0800 Subject: [PATCH] init --- .gitignore | 3 + logs/sys-console.2026-05-08.log | 6608 +++++++++++++++++ logs/sys-console.log | 90 + logs/sys-error.2026-04-24.log.gz | Bin 0 -> 9523 bytes logs/sys-error.2026-04-25.log.gz | Bin 0 -> 25870 bytes logs/sys-error.2026-04-28.log.gz | Bin 0 -> 953 bytes logs/sys-error.2026-04-29.log.gz | Bin 0 -> 4956 bytes logs/sys-error.2026-05-07.log.gz | Bin 0 -> 24101 bytes logs/sys-error.2026-05-08.log.gz | Bin 0 -> 29779 bytes logs/sys-error.log | 45 + logs/sys-info.2026-04-24.log.gz | Bin 0 -> 2316 bytes logs/sys-info.2026-04-25.log.gz | Bin 0 -> 14523 bytes logs/sys-info.2026-04-28.log.gz | Bin 0 -> 3176 bytes logs/sys-info.2026-04-29.log.gz | Bin 0 -> 1737 bytes logs/sys-info.2026-05-07.log.gz | Bin 0 -> 8260 bytes logs/sys-info.2026-05-08.log.gz | Bin 0 -> 3708 bytes .../app/controller/AppDeviceController.java | 112 + .../AppScheduleDetailController.java | 105 + .../AppSchedulingDeviceController.java | 105 + .../controller/AppWateringLogController.java | 105 + .../org/dromara/app/domain/AppDevice.java | 110 + .../org/dromara/app/domain/AppSchedule.java | 54 + .../dromara/app/domain/AppScheduleDetail.java | 66 + .../app/domain/AppSchedulingDevice.java | 35 + .../dromara/app/domain/AppWateringLog.java | 78 + .../dromara/app/domain/bo/AppDeviceBo.java | 104 + .../dromara/app/domain/bo/AppScheduleBo.java | 79 + .../app/domain/bo/AppScheduleDetailBo.java | 64 + .../app/domain/bo/AppSchedulingDeviceBo.java | 36 + .../app/domain/bo/AppWateringLogBo.java | 77 + .../dromara/app/domain/vo/AppDeviceVo.java | 125 + .../app/domain/vo/AppScheduleDetailVo.java | 77 + .../dromara/app/domain/vo/AppScheduleVo.java | 67 + .../app/domain/vo/AppSchedulingDeviceVo.java | 44 + .../app/domain/vo/AppWateringLogVo.java | 94 + .../dromara/app/mapper/AppDeviceMapper.java | 18 + .../app/mapper/AppScheduleDetailMapper.java | 15 + .../dromara/app/mapper/AppScheduleMapper.java | 15 + .../app/mapper/AppSchedulingDeviceMapper.java | 15 + .../app/mapper/AppWateringLogMapper.java | 15 + .../app/service/IAppDeviceService.java | 82 + .../service/IAppScheduleDetailService.java | 70 + .../app/service/IAppScheduleService.java | 68 + .../service/IAppSchedulingDeviceService.java | 68 + .../app/service/IAppWateringLogService.java | 68 + .../service/impl/AppDeviceServiceImpl.java | 159 + .../impl/AppScheduleDetailServiceImpl.java | 142 + .../service/impl/AppScheduleServiceImpl.java | 244 + .../impl/AppSchedulingDeviceServiceImpl.java | 132 + .../impl/AppWateringLogServiceImpl.java | 140 + .../resources/mapper/app/AppDeviceMapper.xml | 6 + .../mapper/app/AppScheduleDetailMapper.xml | 6 + .../mapper/app/AppScheduleMapper.xml | 6 + .../mapper/app/AppSchedulingDeviceMapper.xml | 6 + .../mapper/app/AppWateringLogMapper.xml | 6 + 55 files changed, 9564 insertions(+) create mode 100644 .gitignore create mode 100644 logs/sys-console.2026-05-08.log create mode 100644 logs/sys-error.2026-04-24.log.gz create mode 100644 logs/sys-error.2026-04-25.log.gz create mode 100644 logs/sys-error.2026-04-28.log.gz create mode 100644 logs/sys-error.2026-04-29.log.gz create mode 100644 logs/sys-error.2026-05-07.log.gz create mode 100644 logs/sys-error.2026-05-08.log.gz create mode 100644 logs/sys-info.2026-04-24.log.gz create mode 100644 logs/sys-info.2026-04-25.log.gz create mode 100644 logs/sys-info.2026-04-28.log.gz create mode 100644 logs/sys-info.2026-04-29.log.gz create mode 100644 logs/sys-info.2026-05-07.log.gz create mode 100644 logs/sys-info.2026-05-08.log.gz create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/controller/AppDeviceController.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/controller/AppScheduleDetailController.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/controller/AppSchedulingDeviceController.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/controller/AppWateringLogController.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/AppDevice.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/AppSchedule.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/AppScheduleDetail.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/AppSchedulingDevice.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/AppWateringLog.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppDeviceBo.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppScheduleBo.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppScheduleDetailBo.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppSchedulingDeviceBo.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppWateringLogBo.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppDeviceVo.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppScheduleDetailVo.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppScheduleVo.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppSchedulingDeviceVo.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppWateringLogVo.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/mapper/AppDeviceMapper.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/mapper/AppScheduleDetailMapper.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/mapper/AppScheduleMapper.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/mapper/AppSchedulingDeviceMapper.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/mapper/AppWateringLogMapper.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/service/IAppDeviceService.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/service/IAppScheduleDetailService.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/service/IAppScheduleService.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/service/IAppSchedulingDeviceService.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/service/IAppWateringLogService.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppDeviceServiceImpl.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppScheduleDetailServiceImpl.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppScheduleServiceImpl.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppSchedulingDeviceServiceImpl.java create mode 100644 water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppWateringLogServiceImpl.java create mode 100644 water-modules/water-app/src/main/resources/mapper/app/AppDeviceMapper.xml create mode 100644 water-modules/water-app/src/main/resources/mapper/app/AppScheduleDetailMapper.xml create mode 100644 water-modules/water-app/src/main/resources/mapper/app/AppScheduleMapper.xml create mode 100644 water-modules/water-app/src/main/resources/mapper/app/AppSchedulingDeviceMapper.xml create mode 100644 water-modules/water-app/src/main/resources/mapper/app/AppWateringLogMapper.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0f3d015 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/water-admin/target/ +/water-common/*/target/ +/water-modules/*/target/ diff --git a/logs/sys-console.2026-05-08.log b/logs/sys-console.2026-05-08.log new file mode 100644 index 0000000..f5e0382 --- /dev/null +++ b/logs/sys-console.2026-05-08.log @@ -0,0 +1,6608 @@ +2026-05-08 08:31:00 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.3.Final +2026-05-08 08:31:00 [main] INFO org.dromara.DromaraApplication - Starting DromaraApplication using Java 17.0.17 with PID 32744 (D:\code\water\water-admin\target\classes started by admin in D:\code\water) +2026-05-08 08:31:00 [main] INFO org.dromara.DromaraApplication - The following 1 profile is active: "dev" +2026-05-08 08:31:03 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext +2026-05-08 08:31:04 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it +2026-05-08 08:31:04 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Starting... +2026-05-08 08:31:04 [main] INFO com.zaxxer.hikari.pool.HikariPool - master - Added connection com.mysql.cj.jdbc.ConnectionImpl@65a7bc80 +2026-05-08 08:31:04 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Start completed. +2026-05-08 08:31:04 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success +2026-05-08 08:31:04 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +2026-05-08 08:31:05 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class org.dromara.app.domain.AppSchedulingDevice ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2026-05-08 08:31:05 [main] INFO o.d.common.redis.config.RedisConfig - 初始化 redis 配置 +2026-05-08 08:31:05 [main] INFO org.redisson.Version - Redisson 3.52.0 +2026-05-08 08:31:06 [redisson-netty-1-5] INFO o.r.connection.ConnectionsHolder - 1 connections initialized for localhost/127.0.0.1:6379 +2026-05-08 08:31:06 [redisson-netty-1-4] INFO o.r.connection.ConnectionsHolder - 8 connections initialized for localhost/127.0.0.1:6379 +2026-05-08 08:31:07 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 08:31:07 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 08:31:07 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 08:31:07 [main] INFO o.d.common.json.config.JacksonConfig - 初始化 jackson 配置 +2026-05-08 08:31:07 [main] INFO c.a.s.c.s.SnailJobClientJobCoreAutoConfiguration - Snail-Job 客户端IP为: 192.168.0.217 +2026-05-08 08:31:07 [main] INFO c.b.m.e.s.MybatisPlusApplicationContextAware - Register ApplicationContext instances org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@62e6a3ec +2026-05-08 08:31:12 [main] INFO o.d.w.p.modes.sb.config.BeanConfig - 【warm-flow】,加载完成 +2026-05-08 08:31:12 [main] INFO io.undertow - starting server: Undertow - 2.3.23.Final +2026-05-08 08:31:12 [main] INFO org.xnio - XNIO version 3.8.16.Final +2026-05-08 08:31:12 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.16.Final +2026-05-08 08:31:12 [main] INFO org.jboss.threads - JBoss Threads version 3.7.0.Final +2026-05-08 08:31:12 [main] INFO org.dromara.DromaraApplication - Started DromaraApplication in 13.782 seconds (process running for 14.496) +2026-05-08 08:31:12 [main] INFO o.d.c.sse.listener.SseTopicListener - 初始化SSE主题订阅监听器成功 +2026-05-08 08:31:13 [main] INFO o.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功 +2026-05-08 08:31:13 [main] INFO c.a.s.c.c.init.SnailJobStartListener - snail-job client is preparing to start... v1.9.0 +2026-05-08 08:31:13 [main] INFO c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC client started connect to server +2026-05-08 08:31:13 [main] INFO c.a.s.c.c.rpc.server.SnailGrpcServer - ------> snail-job remoting server start success, grpc = com.aizuda.snailjob.client.common.rpc.server.SnailGrpcServer, port = 28081 +2026-05-08 08:31:14 [snail-job-grpc-client-executor-127.0.0.1-0] ERROR c.a.s.c.j.c.r.JobExecutorRegistrar - Job executors register error requestId:[0] message:[UNAVAILABLE: io exception] +2026-05-08 08:31:14 [snail-job-grpc-client-executor-127.0.0.1-2] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1] message:[UNAVAILABLE: io exception] +2026-05-08 08:31:14 [main] INFO c.a.s.c.c.init.SnailJobStartListener - snail-job client started successfully v1.9.0 +2026-05-08 08:31:14 [registrationTask1] WARN d.c.b.a.c.r.DefaultApplicationRegistrator - Failed to register application as Application(name=water-Vue-Plus, managementUrl=http://192.168.111.1:8081/actuator, healthUrl=http://192.168.111.1:8081/actuator/health, serviceUrl=http://192.168.111.1:8081/) at spring-boot-admin ([http://localhost:9090/admin/instances]): I/O error on POST request for "http://localhost:9090/admin/instances": null. Further attempts are logged on DEBUG level +org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://localhost:9090/admin/instances": null + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.createResourceAccessException(DefaultRestClient.java:704) + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.exchangeInternal(DefaultRestClient.java:589) + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.exchange(DefaultRestClient.java:540) + at org.springframework.web.client.RestClient$RequestHeadersSpec.exchange(RestClient.java:677) + at org.springframework.web.client.DefaultRestClient$DefaultResponseSpec.executeAndExtract(DefaultRestClient.java:821) + at org.springframework.web.client.DefaultRestClient$DefaultResponseSpec.body(DefaultRestClient.java:765) + at de.codecentric.boot.admin.client.registration.RestClientRegistrationClient.register(RestClientRegistrationClient.java:45) + at de.codecentric.boot.admin.client.registration.DefaultApplicationRegistrator.register(DefaultApplicationRegistrator.java:80) + at de.codecentric.boot.admin.client.registration.DefaultApplicationRegistrator.register(DefaultApplicationRegistrator.java:61) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.net.ConnectException + at java.net.http/jdk.internal.net.http.common.Utils.toConnectException(Utils.java:1107) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.connectAsync(PlainHttpConnection.java:203) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.checkRetryConnect(PlainHttpConnection.java:238) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$1(PlainHttpConnection.java:214) + at java.base/java.util.concurrent.CompletableFuture.uniHandle(CompletableFuture.java:934) + at java.base/java.util.concurrent.CompletableFuture$UniHandle.tryFire$$$capture(CompletableFuture.java:911) + at java.base/java.util.concurrent.CompletableFuture$UniHandle.tryFire(CompletableFuture.java) + at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run$$$capture(CompletableFuture.java:1773) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java) + ... 3 common frames omitted +Caused by: java.nio.channels.ClosedChannelException + at java.base/sun.nio.ch.SocketChannelImpl.ensureOpen(SocketChannelImpl.java:195) + at java.base/sun.nio.ch.SocketChannelImpl.beginConnect(SocketChannelImpl.java:760) + at java.base/sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:848) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$0(PlainHttpConnection.java:187) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:569) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.connectAsync(PlainHttpConnection.java:189) + ... 11 common frames omitted +2026-05-08 08:31:14 [RMI TCP Connection(13)-192.168.111.1] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet' +2026-05-08 08:31:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:31:24 [snail-job-grpc-client-executor-127.0.0.1-3] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3] message:[UNAVAILABLE: io exception] +2026-05-08 08:31:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:31:34 [snail-job-grpc-client-executor-127.0.0.1-4] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[4] message:[UNAVAILABLE: io exception] +2026-05-08 08:31:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:31:44 [snail-job-grpc-client-executor-127.0.0.1-5] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[5] message:[UNAVAILABLE: io exception] +2026-05-08 08:31:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:31:54 [snail-job-grpc-client-executor-127.0.0.1-6] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[6] message:[UNAVAILABLE: io exception] +2026-05-08 08:32:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:32:04 [snail-job-grpc-client-executor-127.0.0.1-7] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[7] message:[UNAVAILABLE: io exception] +2026-05-08 08:32:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:32:14 [snail-job-grpc-client-executor-127.0.0.1-9] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[9] message:[UNAVAILABLE: io exception] +2026-05-08 08:32:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:32:24 [snail-job-grpc-client-executor-127.0.0.1-10] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[10] message:[UNAVAILABLE: io exception] +2026-05-08 08:32:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:32:34 [snail-job-grpc-client-executor-127.0.0.1-11] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[11] message:[UNAVAILABLE: io exception] +2026-05-08 08:32:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:32:44 [snail-job-grpc-client-executor-127.0.0.1-12] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[12] message:[UNAVAILABLE: io exception] +2026-05-08 08:32:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:32:54 [snail-job-grpc-client-executor-127.0.0.1-13] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[13] message:[UNAVAILABLE: io exception] +2026-05-08 08:33:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:33:04 [snail-job-grpc-client-executor-127.0.0.1-14] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[14] message:[UNAVAILABLE: io exception] +2026-05-08 08:33:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:33:14 [snail-job-grpc-client-executor-127.0.0.1-15] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[16] message:[UNAVAILABLE: io exception] +2026-05-08 08:33:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:33:24 [snail-job-grpc-client-executor-127.0.0.1-17] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[17] message:[UNAVAILABLE: io exception] +2026-05-08 08:33:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:33:34 [snail-job-grpc-client-executor-127.0.0.1-18] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[18] message:[UNAVAILABLE: io exception] +2026-05-08 08:33:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:33:44 [snail-job-grpc-client-executor-127.0.0.1-19] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[19] message:[UNAVAILABLE: io exception] +2026-05-08 08:33:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:33:54 [snail-job-grpc-client-executor-127.0.0.1-20] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[20] message:[UNAVAILABLE: io exception] +2026-05-08 08:34:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:34:04 [snail-job-grpc-client-executor-127.0.0.1-21] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[21] message:[UNAVAILABLE: io exception] +2026-05-08 08:34:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:34:14 [snail-job-grpc-client-executor-127.0.0.1-23] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[23] message:[UNAVAILABLE: io exception] +2026-05-08 08:34:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:34:24 [snail-job-grpc-client-executor-127.0.0.1-24] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[24] message:[UNAVAILABLE: io exception] +2026-05-08 08:34:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:34:34 [snail-job-grpc-client-executor-127.0.0.1-25] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[25] message:[UNAVAILABLE: io exception] +2026-05-08 08:34:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:34:44 [snail-job-grpc-client-executor-127.0.0.1-26] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[26] message:[UNAVAILABLE: io exception] +2026-05-08 08:34:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:34:54 [snail-job-grpc-client-executor-127.0.0.1-27] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[27] message:[UNAVAILABLE: io exception] +2026-05-08 08:35:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:35:04 [snail-job-grpc-client-executor-127.0.0.1-28] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[28] message:[UNAVAILABLE: io exception] +2026-05-08 08:35:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:35:14 [snail-job-grpc-client-executor-127.0.0.1-30] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[29] message:[UNAVAILABLE: io exception] +2026-05-08 08:35:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:35:24 [snail-job-grpc-client-executor-127.0.0.1-31] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[31] message:[UNAVAILABLE: io exception] +2026-05-08 08:35:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:35:34 [snail-job-grpc-client-executor-127.0.0.1-32] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[32] message:[UNAVAILABLE: io exception] +2026-05-08 08:35:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:35:44 [snail-job-grpc-client-executor-127.0.0.1-33] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[33] message:[UNAVAILABLE: io exception] +2026-05-08 08:35:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:35:54 [snail-job-grpc-client-executor-127.0.0.1-34] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[34] message:[UNAVAILABLE: io exception] +2026-05-08 08:36:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:36:04 [snail-job-grpc-client-executor-127.0.0.1-35] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[35] message:[UNAVAILABLE: io exception] +2026-05-08 08:36:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:36:14 [snail-job-grpc-client-executor-127.0.0.1-37] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[37] message:[UNAVAILABLE: io exception] +2026-05-08 08:36:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:36:24 [snail-job-grpc-client-executor-127.0.0.1-38] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[38] message:[UNAVAILABLE: io exception] +2026-05-08 08:36:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:36:34 [snail-job-grpc-client-executor-127.0.0.1-39] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[39] message:[UNAVAILABLE: io exception] +2026-05-08 08:36:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:36:44 [snail-job-grpc-client-executor-127.0.0.1-40] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[40] message:[UNAVAILABLE: io exception] +2026-05-08 08:36:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:36:54 [snail-job-grpc-client-executor-127.0.0.1-41] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[41] message:[UNAVAILABLE: io exception] +2026-05-08 08:37:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:37:04 [snail-job-grpc-client-executor-127.0.0.1-42] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[42] message:[UNAVAILABLE: io exception] +2026-05-08 08:37:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:37:14 [snail-job-grpc-client-executor-127.0.0.1-43] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[44] message:[UNAVAILABLE: io exception] +2026-05-08 08:37:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:37:24 [snail-job-grpc-client-executor-127.0.0.1-45] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[45] message:[UNAVAILABLE: io exception] +2026-05-08 08:37:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:37:34 [snail-job-grpc-client-executor-127.0.0.1-46] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[46] message:[UNAVAILABLE: io exception] +2026-05-08 08:37:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:37:44 [snail-job-grpc-client-executor-127.0.0.1-47] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[47] message:[UNAVAILABLE: io exception] +2026-05-08 08:37:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:37:54 [snail-job-grpc-client-executor-127.0.0.1-48] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[48] message:[UNAVAILABLE: io exception] +2026-05-08 08:38:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:38:04 [snail-job-grpc-client-executor-127.0.0.1-49] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[49] message:[UNAVAILABLE: io exception] +2026-05-08 08:38:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:38:14 [snail-job-grpc-client-executor-127.0.0.1-50] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[51] message:[UNAVAILABLE: io exception] +2026-05-08 08:38:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:38:24 [snail-job-grpc-client-executor-127.0.0.1-52] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[52] message:[UNAVAILABLE: io exception] +2026-05-08 08:38:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:38:34 [snail-job-grpc-client-executor-127.0.0.1-53] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[53] message:[UNAVAILABLE: io exception] +2026-05-08 08:38:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:38:44 [snail-job-grpc-client-executor-127.0.0.1-54] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[54] message:[UNAVAILABLE: io exception] +2026-05-08 08:38:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:38:54 [snail-job-grpc-client-executor-127.0.0.1-55] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[55] message:[UNAVAILABLE: io exception] +2026-05-08 08:39:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:39:04 [snail-job-grpc-client-executor-127.0.0.1-56] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[56] message:[UNAVAILABLE: io exception] +2026-05-08 08:39:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:39:14 [snail-job-grpc-client-executor-127.0.0.1-58] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[57] message:[UNAVAILABLE: io exception] +2026-05-08 08:39:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:39:24 [snail-job-grpc-client-executor-127.0.0.1-59] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[59] message:[UNAVAILABLE: io exception] +2026-05-08 08:39:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:39:34 [snail-job-grpc-client-executor-127.0.0.1-60] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[60] message:[UNAVAILABLE: io exception] +2026-05-08 08:39:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:39:44 [snail-job-grpc-client-executor-127.0.0.1-61] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[61] message:[UNAVAILABLE: io exception] +2026-05-08 08:39:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:39:54 [snail-job-grpc-client-executor-127.0.0.1-62] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[62] message:[UNAVAILABLE: io exception] +2026-05-08 08:40:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:40:04 [snail-job-grpc-client-executor-127.0.0.1-63] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[63] message:[UNAVAILABLE: io exception] +2026-05-08 08:40:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:40:14 [snail-job-grpc-client-executor-127.0.0.1-65] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[65] message:[UNAVAILABLE: io exception] +2026-05-08 08:40:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:40:24 [snail-job-grpc-client-executor-127.0.0.1-66] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[66] message:[UNAVAILABLE: io exception] +2026-05-08 08:40:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:40:34 [snail-job-grpc-client-executor-127.0.0.1-67] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[67] message:[UNAVAILABLE: io exception] +2026-05-08 08:40:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:40:44 [snail-job-grpc-client-executor-127.0.0.1-68] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[68] message:[UNAVAILABLE: io exception] +2026-05-08 08:40:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:40:54 [snail-job-grpc-client-executor-127.0.0.1-69] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[69] message:[UNAVAILABLE: io exception] +2026-05-08 08:41:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:41:04 [snail-job-grpc-client-executor-127.0.0.1-70] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[70] message:[UNAVAILABLE: io exception] +2026-05-08 08:41:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:41:14 [snail-job-grpc-client-executor-127.0.0.1-71] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[72] message:[UNAVAILABLE: io exception] +2026-05-08 08:41:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:41:24 [snail-job-grpc-client-executor-127.0.0.1-73] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[73] message:[UNAVAILABLE: io exception] +2026-05-08 08:41:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:41:34 [snail-job-grpc-client-executor-127.0.0.1-74] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[74] message:[UNAVAILABLE: io exception] +2026-05-08 08:41:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:41:44 [snail-job-grpc-client-executor-127.0.0.1-75] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[75] message:[UNAVAILABLE: io exception] +2026-05-08 08:41:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:41:54 [snail-job-grpc-client-executor-127.0.0.1-76] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[76] message:[UNAVAILABLE: io exception] +2026-05-08 08:42:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:42:04 [snail-job-grpc-client-executor-127.0.0.1-77] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[77] message:[UNAVAILABLE: io exception] +2026-05-08 08:42:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:42:14 [snail-job-grpc-client-executor-127.0.0.1-78] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[78] message:[UNAVAILABLE: io exception] +2026-05-08 08:42:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:42:24 [snail-job-grpc-client-executor-127.0.0.1-80] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[80] message:[UNAVAILABLE: io exception] +2026-05-08 08:42:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:42:34 [snail-job-grpc-client-executor-127.0.0.1-81] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[81] message:[UNAVAILABLE: io exception] +2026-05-08 08:42:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:42:44 [snail-job-grpc-client-executor-127.0.0.1-82] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[82] message:[UNAVAILABLE: io exception] +2026-05-08 08:42:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:42:54 [snail-job-grpc-client-executor-127.0.0.1-83] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[83] message:[UNAVAILABLE: io exception] +2026-05-08 08:43:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:43:04 [snail-job-grpc-client-executor-127.0.0.1-84] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[84] message:[UNAVAILABLE: io exception] +2026-05-08 08:43:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:43:14 [snail-job-grpc-client-executor-127.0.0.1-85] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[85] message:[UNAVAILABLE: io exception] +2026-05-08 08:43:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:43:24 [snail-job-grpc-client-executor-127.0.0.1-87] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[87] message:[UNAVAILABLE: io exception] +2026-05-08 08:43:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:43:34 [snail-job-grpc-client-executor-127.0.0.1-88] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[88] message:[UNAVAILABLE: io exception] +2026-05-08 08:43:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:43:44 [snail-job-grpc-client-executor-127.0.0.1-89] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[89] message:[UNAVAILABLE: io exception] +2026-05-08 08:43:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:43:54 [snail-job-grpc-client-executor-127.0.0.1-90] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[90] message:[UNAVAILABLE: io exception] +2026-05-08 08:44:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:44:04 [snail-job-grpc-client-executor-127.0.0.1-91] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[91] message:[UNAVAILABLE: io exception] +2026-05-08 08:44:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:44:14 [snail-job-grpc-client-executor-127.0.0.1-92] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[93] message:[UNAVAILABLE: io exception] +2026-05-08 08:44:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:44:24 [snail-job-grpc-client-executor-127.0.0.1-94] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[94] message:[UNAVAILABLE: io exception] +2026-05-08 08:44:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:44:34 [snail-job-grpc-client-executor-127.0.0.1-95] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[95] message:[UNAVAILABLE: io exception] +2026-05-08 08:44:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:44:44 [snail-job-grpc-client-executor-127.0.0.1-96] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[96] message:[UNAVAILABLE: io exception] +2026-05-08 08:44:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:44:54 [snail-job-grpc-client-executor-127.0.0.1-97] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[97] message:[UNAVAILABLE: io exception] +2026-05-08 08:45:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:45:04 [snail-job-grpc-client-executor-127.0.0.1-98] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[98] message:[UNAVAILABLE: io exception] +2026-05-08 08:45:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:45:14 [snail-job-grpc-client-executor-127.0.0.1-99] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[99] message:[UNAVAILABLE: io exception] +2026-05-08 08:45:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:45:24 [snail-job-grpc-client-executor-127.0.0.1-101] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[101] message:[UNAVAILABLE: io exception] +2026-05-08 08:45:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:45:34 [snail-job-grpc-client-executor-127.0.0.1-102] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[102] message:[UNAVAILABLE: io exception] +2026-05-08 08:45:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:45:44 [snail-job-grpc-client-executor-127.0.0.1-103] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[103] message:[UNAVAILABLE: io exception] +2026-05-08 08:45:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:45:54 [snail-job-grpc-client-executor-127.0.0.1-104] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[104] message:[UNAVAILABLE: io exception] +2026-05-08 08:46:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:46:04 [snail-job-grpc-client-executor-127.0.0.1-105] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[105] message:[UNAVAILABLE: io exception] +2026-05-08 08:46:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:46:14 [snail-job-grpc-client-executor-127.0.0.1-106] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[106] message:[UNAVAILABLE: io exception] +2026-05-08 08:46:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:46:24 [snail-job-grpc-client-executor-127.0.0.1-108] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[108] message:[UNAVAILABLE: io exception] +2026-05-08 08:46:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:46:34 [snail-job-grpc-client-executor-127.0.0.1-109] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[109] message:[UNAVAILABLE: io exception] +2026-05-08 08:46:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:46:44 [snail-job-grpc-client-executor-127.0.0.1-110] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[110] message:[UNAVAILABLE: io exception] +2026-05-08 08:46:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:46:54 [snail-job-grpc-client-executor-127.0.0.1-111] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[111] message:[UNAVAILABLE: io exception] +2026-05-08 08:47:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:47:04 [snail-job-grpc-client-executor-127.0.0.1-112] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[112] message:[UNAVAILABLE: io exception] +2026-05-08 08:47:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:47:14 [snail-job-grpc-client-executor-127.0.0.1-113] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[113] message:[UNAVAILABLE: io exception] +2026-05-08 08:47:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:47:24 [snail-job-grpc-client-executor-127.0.0.1-115] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[115] message:[UNAVAILABLE: io exception] +2026-05-08 08:47:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:47:34 [snail-job-grpc-client-executor-127.0.0.1-116] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[116] message:[UNAVAILABLE: io exception] +2026-05-08 08:47:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:47:44 [snail-job-grpc-client-executor-127.0.0.1-117] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[117] message:[UNAVAILABLE: io exception] +2026-05-08 08:47:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:47:54 [snail-job-grpc-client-executor-127.0.0.1-118] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[118] message:[UNAVAILABLE: io exception] +2026-05-08 08:48:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:48:04 [snail-job-grpc-client-executor-127.0.0.1-119] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[119] message:[UNAVAILABLE: io exception] +2026-05-08 08:48:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:48:14 [snail-job-grpc-client-executor-127.0.0.1-121] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[121] message:[UNAVAILABLE: io exception] +2026-05-08 08:48:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:48:24 [snail-job-grpc-client-executor-127.0.0.1-122] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[122] message:[UNAVAILABLE: io exception] +2026-05-08 08:48:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:48:34 [snail-job-grpc-client-executor-127.0.0.1-123] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[123] message:[UNAVAILABLE: io exception] +2026-05-08 08:48:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:48:44 [snail-job-grpc-client-executor-127.0.0.1-124] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[124] message:[UNAVAILABLE: io exception] +2026-05-08 08:48:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:48:54 [snail-job-grpc-client-executor-127.0.0.1-125] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[125] message:[UNAVAILABLE: io exception] +2026-05-08 08:49:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:49:04 [snail-job-grpc-client-executor-127.0.0.1-126] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[126] message:[UNAVAILABLE: io exception] +2026-05-08 08:49:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:49:14 [snail-job-grpc-client-executor-127.0.0.1-128] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[128] message:[UNAVAILABLE: io exception] +2026-05-08 08:49:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:49:24 [snail-job-grpc-client-executor-127.0.0.1-129] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[129] message:[UNAVAILABLE: io exception] +2026-05-08 08:49:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:49:34 [snail-job-grpc-client-executor-127.0.0.1-130] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[130] message:[UNAVAILABLE: io exception] +2026-05-08 08:49:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:49:44 [snail-job-grpc-client-executor-127.0.0.1-131] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[131] message:[UNAVAILABLE: io exception] +2026-05-08 08:49:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:49:54 [snail-job-grpc-client-executor-127.0.0.1-132] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[132] message:[UNAVAILABLE: io exception] +2026-05-08 08:50:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:50:04 [snail-job-grpc-client-executor-127.0.0.1-133] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[133] message:[UNAVAILABLE: io exception] +2026-05-08 08:50:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:50:14 [snail-job-grpc-client-executor-127.0.0.1-134] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[135] message:[UNAVAILABLE: io exception] +2026-05-08 08:50:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:50:24 [snail-job-grpc-client-executor-127.0.0.1-136] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[136] message:[UNAVAILABLE: io exception] +2026-05-08 08:50:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:50:34 [snail-job-grpc-client-executor-127.0.0.1-137] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[137] message:[UNAVAILABLE: io exception] +2026-05-08 08:50:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:50:44 [snail-job-grpc-client-executor-127.0.0.1-138] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[138] message:[UNAVAILABLE: io exception] +2026-05-08 08:50:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:50:54 [snail-job-grpc-client-executor-127.0.0.1-139] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[139] message:[UNAVAILABLE: io exception] +2026-05-08 08:51:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:51:04 [snail-job-grpc-client-executor-127.0.0.1-140] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[140] message:[UNAVAILABLE: io exception] +2026-05-08 08:51:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:51:14 [snail-job-grpc-client-executor-127.0.0.1-142] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[142] message:[UNAVAILABLE: io exception] +2026-05-08 08:51:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:51:24 [snail-job-grpc-client-executor-127.0.0.1-143] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[143] message:[UNAVAILABLE: io exception] +2026-05-08 08:51:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:51:34 [snail-job-grpc-client-executor-127.0.0.1-144] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[144] message:[UNAVAILABLE: io exception] +2026-05-08 08:51:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:51:44 [snail-job-grpc-client-executor-127.0.0.1-145] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[145] message:[UNAVAILABLE: io exception] +2026-05-08 08:51:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:51:54 [snail-job-grpc-client-executor-127.0.0.1-146] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[146] message:[UNAVAILABLE: io exception] +2026-05-08 08:52:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:52:04 [snail-job-grpc-client-executor-127.0.0.1-147] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[147] message:[UNAVAILABLE: io exception] +2026-05-08 08:52:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:52:14 [snail-job-grpc-client-executor-127.0.0.1-148] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[149] message:[UNAVAILABLE: io exception] +2026-05-08 08:52:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:52:24 [snail-job-grpc-client-executor-127.0.0.1-150] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[150] message:[UNAVAILABLE: io exception] +2026-05-08 08:52:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:52:34 [snail-job-grpc-client-executor-127.0.0.1-151] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[151] message:[UNAVAILABLE: io exception] +2026-05-08 08:52:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:52:44 [snail-job-grpc-client-executor-127.0.0.1-152] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[152] message:[UNAVAILABLE: io exception] +2026-05-08 08:52:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:52:54 [snail-job-grpc-client-executor-127.0.0.1-153] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[153] message:[UNAVAILABLE: io exception] +2026-05-08 08:53:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:53:04 [snail-job-grpc-client-executor-127.0.0.1-154] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[154] message:[UNAVAILABLE: io exception] +2026-05-08 08:53:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:53:14 [snail-job-grpc-client-executor-127.0.0.1-156] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[156] message:[UNAVAILABLE: io exception] +2026-05-08 08:53:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:53:24 [snail-job-grpc-client-executor-127.0.0.1-157] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[157] message:[UNAVAILABLE: io exception] +2026-05-08 08:53:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:53:34 [snail-job-grpc-client-executor-127.0.0.1-158] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[158] message:[UNAVAILABLE: io exception] +2026-05-08 08:53:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:53:44 [snail-job-grpc-client-executor-127.0.0.1-159] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[159] message:[UNAVAILABLE: io exception] +2026-05-08 08:53:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:53:54 [snail-job-grpc-client-executor-127.0.0.1-160] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[160] message:[UNAVAILABLE: io exception] +2026-05-08 08:54:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:54:04 [snail-job-grpc-client-executor-127.0.0.1-161] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[161] message:[UNAVAILABLE: io exception] +2026-05-08 08:54:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:54:14 [snail-job-grpc-client-executor-127.0.0.1-163] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[162] message:[UNAVAILABLE: io exception] +2026-05-08 08:54:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:54:24 [snail-job-grpc-client-executor-127.0.0.1-164] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[164] message:[UNAVAILABLE: io exception] +2026-05-08 08:54:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:54:34 [snail-job-grpc-client-executor-127.0.0.1-165] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[165] message:[UNAVAILABLE: io exception] +2026-05-08 08:54:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:54:44 [snail-job-grpc-client-executor-127.0.0.1-166] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[166] message:[UNAVAILABLE: io exception] +2026-05-08 08:54:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:54:54 [snail-job-grpc-client-executor-127.0.0.1-167] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[167] message:[UNAVAILABLE: io exception] +2026-05-08 08:55:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:55:04 [snail-job-grpc-client-executor-127.0.0.1-168] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[168] message:[UNAVAILABLE: io exception] +2026-05-08 08:55:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:55:14 [snail-job-grpc-client-executor-127.0.0.1-170] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[169] message:[UNAVAILABLE: io exception] +2026-05-08 08:55:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:55:24 [snail-job-grpc-client-executor-127.0.0.1-171] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[171] message:[UNAVAILABLE: io exception] +2026-05-08 08:55:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:55:34 [snail-job-grpc-client-executor-127.0.0.1-172] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[172] message:[UNAVAILABLE: io exception] +2026-05-08 08:55:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:55:44 [snail-job-grpc-client-executor-127.0.0.1-173] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[173] message:[UNAVAILABLE: io exception] +2026-05-08 08:55:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:55:54 [snail-job-grpc-client-executor-127.0.0.1-174] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[174] message:[UNAVAILABLE: io exception] +2026-05-08 08:56:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:56:04 [snail-job-grpc-client-executor-127.0.0.1-175] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[175] message:[UNAVAILABLE: io exception] +2026-05-08 08:56:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:56:14 [snail-job-grpc-client-executor-127.0.0.1-176] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[177] message:[UNAVAILABLE: io exception] +2026-05-08 08:56:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:56:24 [snail-job-grpc-client-executor-127.0.0.1-178] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[178] message:[UNAVAILABLE: io exception] +2026-05-08 08:56:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:56:34 [snail-job-grpc-client-executor-127.0.0.1-179] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[179] message:[UNAVAILABLE: io exception] +2026-05-08 08:56:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:56:44 [snail-job-grpc-client-executor-127.0.0.1-180] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[180] message:[UNAVAILABLE: io exception] +2026-05-08 08:56:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:56:54 [snail-job-grpc-client-executor-127.0.0.1-181] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[181] message:[UNAVAILABLE: io exception] +2026-05-08 08:57:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:57:04 [snail-job-grpc-client-executor-127.0.0.1-182] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[182] message:[UNAVAILABLE: io exception] +2026-05-08 08:57:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:57:14 [snail-job-grpc-client-executor-127.0.0.1-183] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[183] message:[UNAVAILABLE: io exception] +2026-05-08 08:57:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:57:24 [snail-job-grpc-client-executor-127.0.0.1-185] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[185] message:[UNAVAILABLE: io exception] +2026-05-08 08:57:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:57:34 [snail-job-grpc-client-executor-127.0.0.1-186] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[186] message:[UNAVAILABLE: io exception] +2026-05-08 08:57:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:57:44 [snail-job-grpc-client-executor-127.0.0.1-187] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[187] message:[UNAVAILABLE: io exception] +2026-05-08 08:57:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:57:54 [snail-job-grpc-client-executor-127.0.0.1-188] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[188] message:[UNAVAILABLE: io exception] +2026-05-08 08:58:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:58:04 [snail-job-grpc-client-executor-127.0.0.1-189] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[189] message:[UNAVAILABLE: io exception] +2026-05-08 08:58:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:58:14 [snail-job-grpc-client-executor-127.0.0.1-191] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[190] message:[UNAVAILABLE: io exception] +2026-05-08 08:58:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:58:24 [snail-job-grpc-client-executor-127.0.0.1-192] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[192] message:[UNAVAILABLE: io exception] +2026-05-08 08:58:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:58:34 [snail-job-grpc-client-executor-127.0.0.1-193] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[193] message:[UNAVAILABLE: io exception] +2026-05-08 08:58:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:58:44 [snail-job-grpc-client-executor-127.0.0.1-194] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[194] message:[UNAVAILABLE: io exception] +2026-05-08 08:58:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:58:54 [snail-job-grpc-client-executor-127.0.0.1-195] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[195] message:[UNAVAILABLE: io exception] +2026-05-08 08:59:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:59:04 [snail-job-grpc-client-executor-127.0.0.1-196] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[196] message:[UNAVAILABLE: io exception] +2026-05-08 08:59:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:59:14 [snail-job-grpc-client-executor-127.0.0.1-197] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[198] message:[UNAVAILABLE: io exception] +2026-05-08 08:59:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:59:24 [snail-job-grpc-client-executor-127.0.0.1-199] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[199] message:[UNAVAILABLE: io exception] +2026-05-08 08:59:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:59:34 [snail-job-grpc-client-executor-127.0.0.1-200] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[200] message:[UNAVAILABLE: io exception] +2026-05-08 08:59:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:59:44 [snail-job-grpc-client-executor-127.0.0.1-201] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[201] message:[UNAVAILABLE: io exception] +2026-05-08 08:59:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 08:59:54 [snail-job-grpc-client-executor-127.0.0.1-202] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[202] message:[UNAVAILABLE: io exception] +2026-05-08 09:00:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:00:04 [snail-job-grpc-client-executor-127.0.0.1-203] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[203] message:[UNAVAILABLE: io exception] +2026-05-08 09:00:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:00:14 [snail-job-grpc-client-executor-127.0.0.1-205] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[204] message:[UNAVAILABLE: io exception] +2026-05-08 09:00:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:00:24 [snail-job-grpc-client-executor-127.0.0.1-206] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[206] message:[UNAVAILABLE: io exception] +2026-05-08 09:00:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:00:34 [snail-job-grpc-client-executor-127.0.0.1-207] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[207] message:[UNAVAILABLE: io exception] +2026-05-08 09:00:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:00:44 [snail-job-grpc-client-executor-127.0.0.1-208] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[208] message:[UNAVAILABLE: io exception] +2026-05-08 09:00:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:00:54 [snail-job-grpc-client-executor-127.0.0.1-209] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[209] message:[UNAVAILABLE: io exception] +2026-05-08 09:01:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:01:04 [snail-job-grpc-client-executor-127.0.0.1-210] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[210] message:[UNAVAILABLE: io exception] +2026-05-08 09:01:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:01:14 [snail-job-grpc-client-executor-127.0.0.1-212] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[211] message:[UNAVAILABLE: io exception] +2026-05-08 09:01:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:01:24 [snail-job-grpc-client-executor-127.0.0.1-213] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[213] message:[UNAVAILABLE: io exception] +2026-05-08 09:01:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:01:34 [snail-job-grpc-client-executor-127.0.0.1-214] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[214] message:[UNAVAILABLE: io exception] +2026-05-08 09:01:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:01:44 [snail-job-grpc-client-executor-127.0.0.1-215] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[215] message:[UNAVAILABLE: io exception] +2026-05-08 09:01:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:01:54 [snail-job-grpc-client-executor-127.0.0.1-216] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[216] message:[UNAVAILABLE: io exception] +2026-05-08 09:02:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:02:04 [snail-job-grpc-client-executor-127.0.0.1-217] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[217] message:[UNAVAILABLE: io exception] +2026-05-08 09:02:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:02:14 [snail-job-grpc-client-executor-127.0.0.1-218] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[218] message:[UNAVAILABLE: io exception] +2026-05-08 09:02:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:02:24 [snail-job-grpc-client-executor-127.0.0.1-220] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[220] message:[UNAVAILABLE: io exception] +2026-05-08 09:02:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:02:34 [snail-job-grpc-client-executor-127.0.0.1-221] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[221] message:[UNAVAILABLE: io exception] +2026-05-08 09:02:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:02:44 [snail-job-grpc-client-executor-127.0.0.1-222] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[222] message:[UNAVAILABLE: io exception] +2026-05-08 09:02:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:02:54 [snail-job-grpc-client-executor-127.0.0.1-223] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[223] message:[UNAVAILABLE: io exception] +2026-05-08 09:03:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:03:04 [snail-job-grpc-client-executor-127.0.0.1-224] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[224] message:[UNAVAILABLE: io exception] +2026-05-08 09:03:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:03:14 [snail-job-grpc-client-executor-127.0.0.1-226] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[226] message:[UNAVAILABLE: io exception] +2026-05-08 09:03:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:03:24 [snail-job-grpc-client-executor-127.0.0.1-227] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[227] message:[UNAVAILABLE: io exception] +2026-05-08 09:03:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:03:34 [snail-job-grpc-client-executor-127.0.0.1-228] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[228] message:[UNAVAILABLE: io exception] +2026-05-08 09:03:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:03:44 [snail-job-grpc-client-executor-127.0.0.1-229] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[229] message:[UNAVAILABLE: io exception] +2026-05-08 09:03:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:03:54 [snail-job-grpc-client-executor-127.0.0.1-230] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[230] message:[UNAVAILABLE: io exception] +2026-05-08 09:04:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:04:04 [snail-job-grpc-client-executor-127.0.0.1-231] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[231] message:[UNAVAILABLE: io exception] +2026-05-08 09:04:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:04:14 [snail-job-grpc-client-executor-127.0.0.1-233] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[232] message:[UNAVAILABLE: io exception] +2026-05-08 09:04:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:04:24 [snail-job-grpc-client-executor-127.0.0.1-234] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[234] message:[UNAVAILABLE: io exception] +2026-05-08 09:04:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:04:34 [snail-job-grpc-client-executor-127.0.0.1-235] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[235] message:[UNAVAILABLE: io exception] +2026-05-08 09:04:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:04:44 [snail-job-grpc-client-executor-127.0.0.1-236] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[236] message:[UNAVAILABLE: io exception] +2026-05-08 09:04:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:04:54 [snail-job-grpc-client-executor-127.0.0.1-237] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[237] message:[UNAVAILABLE: io exception] +2026-05-08 09:05:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:05:04 [snail-job-grpc-client-executor-127.0.0.1-238] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[238] message:[UNAVAILABLE: io exception] +2026-05-08 09:05:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:05:14 [snail-job-grpc-client-executor-127.0.0.1-239] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[240] message:[UNAVAILABLE: io exception] +2026-05-08 09:05:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:05:24 [snail-job-grpc-client-executor-127.0.0.1-241] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[241] message:[UNAVAILABLE: io exception] +2026-05-08 09:05:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:05:34 [snail-job-grpc-client-executor-127.0.0.1-242] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[242] message:[UNAVAILABLE: io exception] +2026-05-08 09:05:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:05:44 [snail-job-grpc-client-executor-127.0.0.1-243] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[243] message:[UNAVAILABLE: io exception] +2026-05-08 09:05:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:05:54 [snail-job-grpc-client-executor-127.0.0.1-244] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[244] message:[UNAVAILABLE: io exception] +2026-05-08 09:06:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:06:04 [snail-job-grpc-client-executor-127.0.0.1-245] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[245] message:[UNAVAILABLE: io exception] +2026-05-08 09:06:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:06:14 [snail-job-grpc-client-executor-127.0.0.1-246] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[247] message:[UNAVAILABLE: io exception] +2026-05-08 09:06:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:06:24 [snail-job-grpc-client-executor-127.0.0.1-248] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[248] message:[UNAVAILABLE: io exception] +2026-05-08 09:06:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:06:34 [snail-job-grpc-client-executor-127.0.0.1-249] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[249] message:[UNAVAILABLE: io exception] +2026-05-08 09:06:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:06:44 [snail-job-grpc-client-executor-127.0.0.1-250] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[250] message:[UNAVAILABLE: io exception] +2026-05-08 09:06:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:06:54 [snail-job-grpc-client-executor-127.0.0.1-251] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[251] message:[UNAVAILABLE: io exception] +2026-05-08 09:07:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:07:04 [snail-job-grpc-client-executor-127.0.0.1-252] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[252] message:[UNAVAILABLE: io exception] +2026-05-08 09:07:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:07:14 [snail-job-grpc-client-executor-127.0.0.1-253] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[253] message:[UNAVAILABLE: io exception] +2026-05-08 09:07:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:07:24 [snail-job-grpc-client-executor-127.0.0.1-255] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[255] message:[UNAVAILABLE: io exception] +2026-05-08 09:07:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:07:34 [snail-job-grpc-client-executor-127.0.0.1-256] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[256] message:[UNAVAILABLE: io exception] +2026-05-08 09:07:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:07:44 [snail-job-grpc-client-executor-127.0.0.1-257] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[257] message:[UNAVAILABLE: io exception] +2026-05-08 09:07:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:07:54 [snail-job-grpc-client-executor-127.0.0.1-258] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[258] message:[UNAVAILABLE: io exception] +2026-05-08 09:08:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:08:04 [snail-job-grpc-client-executor-127.0.0.1-259] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[259] message:[UNAVAILABLE: io exception] +2026-05-08 09:08:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:08:14 [snail-job-grpc-client-executor-127.0.0.1-261] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[260] message:[UNAVAILABLE: io exception] +2026-05-08 09:08:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:08:24 [snail-job-grpc-client-executor-127.0.0.1-262] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[262] message:[UNAVAILABLE: io exception] +2026-05-08 09:08:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:08:34 [snail-job-grpc-client-executor-127.0.0.1-263] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[263] message:[UNAVAILABLE: io exception] +2026-05-08 09:08:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:08:44 [snail-job-grpc-client-executor-127.0.0.1-264] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[264] message:[UNAVAILABLE: io exception] +2026-05-08 09:08:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:08:54 [snail-job-grpc-client-executor-127.0.0.1-265] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[265] message:[UNAVAILABLE: io exception] +2026-05-08 09:09:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:09:04 [snail-job-grpc-client-executor-127.0.0.1-266] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[266] message:[UNAVAILABLE: io exception] +2026-05-08 09:09:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:09:14 [snail-job-grpc-client-executor-127.0.0.1-267] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[268] message:[UNAVAILABLE: io exception] +2026-05-08 09:09:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:09:24 [snail-job-grpc-client-executor-127.0.0.1-269] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[269] message:[UNAVAILABLE: io exception] +2026-05-08 09:09:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:09:34 [snail-job-grpc-client-executor-127.0.0.1-270] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[270] message:[UNAVAILABLE: io exception] +2026-05-08 09:09:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:09:44 [snail-job-grpc-client-executor-127.0.0.1-271] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[271] message:[UNAVAILABLE: io exception] +2026-05-08 09:09:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:09:54 [snail-job-grpc-client-executor-127.0.0.1-272] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[272] message:[UNAVAILABLE: io exception] +2026-05-08 09:10:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:10:04 [snail-job-grpc-client-executor-127.0.0.1-273] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[273] message:[UNAVAILABLE: io exception] +2026-05-08 09:10:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:10:14 [snail-job-grpc-client-executor-127.0.0.1-274] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[274] message:[UNAVAILABLE: io exception] +2026-05-08 09:10:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:10:24 [snail-job-grpc-client-executor-127.0.0.1-276] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[276] message:[UNAVAILABLE: io exception] +2026-05-08 09:10:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:10:34 [snail-job-grpc-client-executor-127.0.0.1-277] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[277] message:[UNAVAILABLE: io exception] +2026-05-08 09:10:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:10:44 [snail-job-grpc-client-executor-127.0.0.1-278] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[278] message:[UNAVAILABLE: io exception] +2026-05-08 09:10:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:10:54 [snail-job-grpc-client-executor-127.0.0.1-279] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[279] message:[UNAVAILABLE: io exception] +2026-05-08 09:11:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:11:04 [snail-job-grpc-client-executor-127.0.0.1-280] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[280] message:[UNAVAILABLE: io exception] +2026-05-08 09:11:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:11:14 [snail-job-grpc-client-executor-127.0.0.1-281] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[281] message:[UNAVAILABLE: io exception] +2026-05-08 09:11:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:11:24 [snail-job-grpc-client-executor-127.0.0.1-283] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[283] message:[UNAVAILABLE: io exception] +2026-05-08 09:11:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:11:34 [snail-job-grpc-client-executor-127.0.0.1-284] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[284] message:[UNAVAILABLE: io exception] +2026-05-08 09:11:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:11:44 [snail-job-grpc-client-executor-127.0.0.1-285] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[285] message:[UNAVAILABLE: io exception] +2026-05-08 09:11:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:11:54 [snail-job-grpc-client-executor-127.0.0.1-286] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[286] message:[UNAVAILABLE: io exception] +2026-05-08 09:12:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:12:04 [snail-job-grpc-client-executor-127.0.0.1-287] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[287] message:[UNAVAILABLE: io exception] +2026-05-08 09:12:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:12:14 [snail-job-grpc-client-executor-127.0.0.1-289] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[289] message:[UNAVAILABLE: io exception] +2026-05-08 09:12:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:12:24 [snail-job-grpc-client-executor-127.0.0.1-290] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[290] message:[UNAVAILABLE: io exception] +2026-05-08 09:12:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:12:34 [snail-job-grpc-client-executor-127.0.0.1-291] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[291] message:[UNAVAILABLE: io exception] +2026-05-08 09:12:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:12:44 [snail-job-grpc-client-executor-127.0.0.1-292] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[292] message:[UNAVAILABLE: io exception] +2026-05-08 09:12:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:12:54 [snail-job-grpc-client-executor-127.0.0.1-293] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[293] message:[UNAVAILABLE: io exception] +2026-05-08 09:13:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:13:04 [snail-job-grpc-client-executor-127.0.0.1-294] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[294] message:[UNAVAILABLE: io exception] +2026-05-08 09:13:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:13:14 [snail-job-grpc-client-executor-127.0.0.1-296] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[295] message:[UNAVAILABLE: io exception] +2026-05-08 09:13:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:13:24 [snail-job-grpc-client-executor-127.0.0.1-297] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[297] message:[UNAVAILABLE: io exception] +2026-05-08 09:13:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:13:34 [snail-job-grpc-client-executor-127.0.0.1-298] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[298] message:[UNAVAILABLE: io exception] +2026-05-08 09:13:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:13:44 [snail-job-grpc-client-executor-127.0.0.1-299] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[299] message:[UNAVAILABLE: io exception] +2026-05-08 09:13:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:13:54 [snail-job-grpc-client-executor-127.0.0.1-300] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[300] message:[UNAVAILABLE: io exception] +2026-05-08 09:14:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:14:04 [snail-job-grpc-client-executor-127.0.0.1-301] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[301] message:[UNAVAILABLE: io exception] +2026-05-08 09:14:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:14:14 [snail-job-grpc-client-executor-127.0.0.1-302] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[302] message:[UNAVAILABLE: io exception] +2026-05-08 09:14:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:14:24 [snail-job-grpc-client-executor-127.0.0.1-304] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[304] message:[UNAVAILABLE: io exception] +2026-05-08 09:14:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:14:34 [snail-job-grpc-client-executor-127.0.0.1-305] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[305] message:[UNAVAILABLE: io exception] +2026-05-08 09:14:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:14:44 [snail-job-grpc-client-executor-127.0.0.1-306] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[306] message:[UNAVAILABLE: io exception] +2026-05-08 09:14:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:14:54 [snail-job-grpc-client-executor-127.0.0.1-307] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[307] message:[UNAVAILABLE: io exception] +2026-05-08 09:15:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:15:04 [snail-job-grpc-client-executor-127.0.0.1-308] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[308] message:[UNAVAILABLE: io exception] +2026-05-08 09:15:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:15:14 [snail-job-grpc-client-executor-127.0.0.1-310] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[309] message:[UNAVAILABLE: io exception] +2026-05-08 09:15:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:15:24 [snail-job-grpc-client-executor-127.0.0.1-311] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[311] message:[UNAVAILABLE: io exception] +2026-05-08 09:15:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:15:34 [snail-job-grpc-client-executor-127.0.0.1-312] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[312] message:[UNAVAILABLE: io exception] +2026-05-08 09:15:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:15:44 [snail-job-grpc-client-executor-127.0.0.1-313] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[313] message:[UNAVAILABLE: io exception] +2026-05-08 09:15:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:15:54 [snail-job-grpc-client-executor-127.0.0.1-314] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[314] message:[UNAVAILABLE: io exception] +2026-05-08 09:16:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:16:04 [snail-job-grpc-client-executor-127.0.0.1-315] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[315] message:[UNAVAILABLE: io exception] +2026-05-08 09:16:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:16:14 [snail-job-grpc-client-executor-127.0.0.1-317] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[316] message:[UNAVAILABLE: io exception] +2026-05-08 09:16:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:16:24 [snail-job-grpc-client-executor-127.0.0.1-318] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[318] message:[UNAVAILABLE: io exception] +2026-05-08 09:16:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:16:34 [snail-job-grpc-client-executor-127.0.0.1-319] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[319] message:[UNAVAILABLE: io exception] +2026-05-08 09:16:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:16:44 [snail-job-grpc-client-executor-127.0.0.1-320] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[320] message:[UNAVAILABLE: io exception] +2026-05-08 09:16:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:16:54 [snail-job-grpc-client-executor-127.0.0.1-321] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[321] message:[UNAVAILABLE: io exception] +2026-05-08 09:17:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:17:04 [snail-job-grpc-client-executor-127.0.0.1-322] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[322] message:[UNAVAILABLE: io exception] +2026-05-08 09:17:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:17:14 [snail-job-grpc-client-executor-127.0.0.1-324] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[323] message:[UNAVAILABLE: io exception] +2026-05-08 09:17:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:17:24 [snail-job-grpc-client-executor-127.0.0.1-325] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[325] message:[UNAVAILABLE: io exception] +2026-05-08 09:17:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:17:34 [snail-job-grpc-client-executor-127.0.0.1-326] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[326] message:[UNAVAILABLE: io exception] +2026-05-08 09:17:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:17:44 [snail-job-grpc-client-executor-127.0.0.1-327] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[327] message:[UNAVAILABLE: io exception] +2026-05-08 09:17:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:17:54 [snail-job-grpc-client-executor-127.0.0.1-328] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[328] message:[UNAVAILABLE: io exception] +2026-05-08 09:18:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:18:04 [snail-job-grpc-client-executor-127.0.0.1-329] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[329] message:[UNAVAILABLE: io exception] +2026-05-08 09:18:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:18:14 [snail-job-grpc-client-executor-127.0.0.1-331] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[331] message:[UNAVAILABLE: io exception] +2026-05-08 09:18:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:18:24 [snail-job-grpc-client-executor-127.0.0.1-332] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[332] message:[UNAVAILABLE: io exception] +2026-05-08 09:18:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:18:34 [snail-job-grpc-client-executor-127.0.0.1-333] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[333] message:[UNAVAILABLE: io exception] +2026-05-08 09:18:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:18:44 [snail-job-grpc-client-executor-127.0.0.1-334] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[334] message:[UNAVAILABLE: io exception] +2026-05-08 09:18:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:18:54 [snail-job-grpc-client-executor-127.0.0.1-335] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[335] message:[UNAVAILABLE: io exception] +2026-05-08 09:19:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:19:04 [snail-job-grpc-client-executor-127.0.0.1-336] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[336] message:[UNAVAILABLE: io exception] +2026-05-08 09:19:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:19:14 [snail-job-grpc-client-executor-127.0.0.1-338] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[337] message:[UNAVAILABLE: io exception] +2026-05-08 09:19:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:19:24 [snail-job-grpc-client-executor-127.0.0.1-339] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[339] message:[UNAVAILABLE: io exception] +2026-05-08 09:19:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:19:34 [snail-job-grpc-client-executor-127.0.0.1-340] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[340] message:[UNAVAILABLE: io exception] +2026-05-08 09:19:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:19:44 [snail-job-grpc-client-executor-127.0.0.1-341] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[341] message:[UNAVAILABLE: io exception] +2026-05-08 09:19:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:19:54 [snail-job-grpc-client-executor-127.0.0.1-342] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[342] message:[UNAVAILABLE: io exception] +2026-05-08 09:20:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:20:04 [snail-job-grpc-client-executor-127.0.0.1-343] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[343] message:[UNAVAILABLE: io exception] +2026-05-08 09:20:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:20:14 [snail-job-grpc-client-executor-127.0.0.1-344] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[345] message:[UNAVAILABLE: io exception] +2026-05-08 09:20:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:20:24 [snail-job-grpc-client-executor-127.0.0.1-346] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[346] message:[UNAVAILABLE: io exception] +2026-05-08 09:20:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:20:34 [snail-job-grpc-client-executor-127.0.0.1-347] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[347] message:[UNAVAILABLE: io exception] +2026-05-08 09:20:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:20:44 [snail-job-grpc-client-executor-127.0.0.1-348] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[348] message:[UNAVAILABLE: io exception] +2026-05-08 09:20:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:20:54 [snail-job-grpc-client-executor-127.0.0.1-349] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[349] message:[UNAVAILABLE: io exception] +2026-05-08 09:21:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:21:04 [snail-job-grpc-client-executor-127.0.0.1-350] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[350] message:[UNAVAILABLE: io exception] +2026-05-08 09:21:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:21:14 [snail-job-grpc-client-executor-127.0.0.1-352] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[351] message:[UNAVAILABLE: io exception] +2026-05-08 09:21:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:21:24 [snail-job-grpc-client-executor-127.0.0.1-353] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[353] message:[UNAVAILABLE: io exception] +2026-05-08 09:21:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:21:34 [snail-job-grpc-client-executor-127.0.0.1-354] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[354] message:[UNAVAILABLE: io exception] +2026-05-08 09:21:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:21:44 [snail-job-grpc-client-executor-127.0.0.1-355] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[355] message:[UNAVAILABLE: io exception] +2026-05-08 09:21:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:21:54 [snail-job-grpc-client-executor-127.0.0.1-356] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[356] message:[UNAVAILABLE: io exception] +2026-05-08 09:22:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:22:04 [snail-job-grpc-client-executor-127.0.0.1-357] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[357] message:[UNAVAILABLE: io exception] +2026-05-08 09:22:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:22:14 [snail-job-grpc-client-executor-127.0.0.1-358] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[358] message:[UNAVAILABLE: io exception] +2026-05-08 09:22:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:22:24 [snail-job-grpc-client-executor-127.0.0.1-360] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[360] message:[UNAVAILABLE: io exception] +2026-05-08 09:22:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:22:34 [snail-job-grpc-client-executor-127.0.0.1-361] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[361] message:[UNAVAILABLE: io exception] +2026-05-08 09:22:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:22:44 [snail-job-grpc-client-executor-127.0.0.1-362] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[362] message:[UNAVAILABLE: io exception] +2026-05-08 09:22:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:22:54 [snail-job-grpc-client-executor-127.0.0.1-363] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[363] message:[UNAVAILABLE: io exception] +2026-05-08 09:23:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:23:04 [snail-job-grpc-client-executor-127.0.0.1-364] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[364] message:[UNAVAILABLE: io exception] +2026-05-08 09:23:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:23:14 [snail-job-grpc-client-executor-127.0.0.1-365] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[365] message:[UNAVAILABLE: io exception] +2026-05-08 09:23:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:23:24 [snail-job-grpc-client-executor-127.0.0.1-367] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[367] message:[UNAVAILABLE: io exception] +2026-05-08 09:23:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:23:34 [snail-job-grpc-client-executor-127.0.0.1-368] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[368] message:[UNAVAILABLE: io exception] +2026-05-08 09:23:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:23:44 [snail-job-grpc-client-executor-127.0.0.1-369] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[369] message:[UNAVAILABLE: io exception] +2026-05-08 09:23:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:23:54 [snail-job-grpc-client-executor-127.0.0.1-370] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[370] message:[UNAVAILABLE: io exception] +2026-05-08 09:24:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:24:04 [snail-job-grpc-client-executor-127.0.0.1-371] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[371] message:[UNAVAILABLE: io exception] +2026-05-08 09:24:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:24:14 [snail-job-grpc-client-executor-127.0.0.1-372] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[373] message:[UNAVAILABLE: io exception] +2026-05-08 09:24:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:24:24 [snail-job-grpc-client-executor-127.0.0.1-374] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[374] message:[UNAVAILABLE: io exception] +2026-05-08 09:24:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:24:34 [snail-job-grpc-client-executor-127.0.0.1-375] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[375] message:[UNAVAILABLE: io exception] +2026-05-08 09:24:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:24:44 [snail-job-grpc-client-executor-127.0.0.1-376] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[376] message:[UNAVAILABLE: io exception] +2026-05-08 09:24:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:24:54 [snail-job-grpc-client-executor-127.0.0.1-377] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[377] message:[UNAVAILABLE: io exception] +2026-05-08 09:25:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:25:04 [snail-job-grpc-client-executor-127.0.0.1-378] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[378] message:[UNAVAILABLE: io exception] +2026-05-08 09:25:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:25:14 [snail-job-grpc-client-executor-127.0.0.1-379] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[380] message:[UNAVAILABLE: io exception] +2026-05-08 09:25:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:25:24 [snail-job-grpc-client-executor-127.0.0.1-381] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[381] message:[UNAVAILABLE: io exception] +2026-05-08 09:25:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:25:34 [snail-job-grpc-client-executor-127.0.0.1-382] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[382] message:[UNAVAILABLE: io exception] +2026-05-08 09:25:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:25:44 [snail-job-grpc-client-executor-127.0.0.1-383] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[383] message:[UNAVAILABLE: io exception] +2026-05-08 09:25:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:25:54 [snail-job-grpc-client-executor-127.0.0.1-384] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[384] message:[UNAVAILABLE: io exception] +2026-05-08 09:26:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:26:04 [snail-job-grpc-client-executor-127.0.0.1-385] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[385] message:[UNAVAILABLE: io exception] +2026-05-08 09:26:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:26:14 [snail-job-grpc-client-executor-127.0.0.1-386] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[386] message:[UNAVAILABLE: io exception] +2026-05-08 09:26:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:26:24 [snail-job-grpc-client-executor-127.0.0.1-388] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[388] message:[UNAVAILABLE: io exception] +2026-05-08 09:26:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:26:34 [snail-job-grpc-client-executor-127.0.0.1-389] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[389] message:[UNAVAILABLE: io exception] +2026-05-08 09:26:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:26:44 [snail-job-grpc-client-executor-127.0.0.1-390] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[390] message:[UNAVAILABLE: io exception] +2026-05-08 09:26:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:26:54 [snail-job-grpc-client-executor-127.0.0.1-391] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[391] message:[UNAVAILABLE: io exception] +2026-05-08 09:27:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:27:04 [snail-job-grpc-client-executor-127.0.0.1-392] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[392] message:[UNAVAILABLE: io exception] +2026-05-08 09:27:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:27:14 [snail-job-grpc-client-executor-127.0.0.1-394] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[393] message:[UNAVAILABLE: io exception] +2026-05-08 09:27:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:27:24 [snail-job-grpc-client-executor-127.0.0.1-395] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[395] message:[UNAVAILABLE: io exception] +2026-05-08 09:27:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:27:34 [snail-job-grpc-client-executor-127.0.0.1-396] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[396] message:[UNAVAILABLE: io exception] +2026-05-08 09:27:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:27:44 [snail-job-grpc-client-executor-127.0.0.1-397] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[397] message:[UNAVAILABLE: io exception] +2026-05-08 09:27:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:27:54 [snail-job-grpc-client-executor-127.0.0.1-398] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[398] message:[UNAVAILABLE: io exception] +2026-05-08 09:28:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:28:04 [snail-job-grpc-client-executor-127.0.0.1-399] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[399] message:[UNAVAILABLE: io exception] +2026-05-08 09:28:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:28:14 [snail-job-grpc-client-executor-127.0.0.1-401] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[400] message:[UNAVAILABLE: io exception] +2026-05-08 09:28:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:28:24 [snail-job-grpc-client-executor-127.0.0.1-402] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[402] message:[UNAVAILABLE: io exception] +2026-05-08 09:28:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:28:34 [snail-job-grpc-client-executor-127.0.0.1-403] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[403] message:[UNAVAILABLE: io exception] +2026-05-08 09:28:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:28:44 [snail-job-grpc-client-executor-127.0.0.1-404] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[404] message:[UNAVAILABLE: io exception] +2026-05-08 09:28:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:28:54 [snail-job-grpc-client-executor-127.0.0.1-405] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[405] message:[UNAVAILABLE: io exception] +2026-05-08 09:29:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:29:04 [snail-job-grpc-client-executor-127.0.0.1-406] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[406] message:[UNAVAILABLE: io exception] +2026-05-08 09:29:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:29:14 [snail-job-grpc-client-executor-127.0.0.1-407] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[407] message:[UNAVAILABLE: io exception] +2026-05-08 09:29:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:29:24 [snail-job-grpc-client-executor-127.0.0.1-409] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[409] message:[UNAVAILABLE: io exception] +2026-05-08 09:29:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:29:34 [snail-job-grpc-client-executor-127.0.0.1-410] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[410] message:[UNAVAILABLE: io exception] +2026-05-08 09:29:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:29:44 [snail-job-grpc-client-executor-127.0.0.1-411] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[411] message:[UNAVAILABLE: io exception] +2026-05-08 09:29:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:29:54 [snail-job-grpc-client-executor-127.0.0.1-412] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[412] message:[UNAVAILABLE: io exception] +2026-05-08 09:30:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:30:04 [snail-job-grpc-client-executor-127.0.0.1-413] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[413] message:[UNAVAILABLE: io exception] +2026-05-08 09:30:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:30:14 [snail-job-grpc-client-executor-127.0.0.1-414] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[414] message:[UNAVAILABLE: io exception] +2026-05-08 09:30:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:30:24 [snail-job-grpc-client-executor-127.0.0.1-416] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[416] message:[UNAVAILABLE: io exception] +2026-05-08 09:30:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:30:34 [snail-job-grpc-client-executor-127.0.0.1-417] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[417] message:[UNAVAILABLE: io exception] +2026-05-08 09:30:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:30:44 [snail-job-grpc-client-executor-127.0.0.1-418] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[418] message:[UNAVAILABLE: io exception] +2026-05-08 09:30:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:30:54 [snail-job-grpc-client-executor-127.0.0.1-419] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[419] message:[UNAVAILABLE: io exception] +2026-05-08 09:31:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:31:04 [snail-job-grpc-client-executor-127.0.0.1-420] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[420] message:[UNAVAILABLE: io exception] +2026-05-08 09:31:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:31:14 [snail-job-grpc-client-executor-127.0.0.1-421] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[421] message:[UNAVAILABLE: io exception] +2026-05-08 09:31:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:31:24 [snail-job-grpc-client-executor-127.0.0.1-423] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[423] message:[UNAVAILABLE: io exception] +2026-05-08 09:31:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:31:34 [snail-job-grpc-client-executor-127.0.0.1-424] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[424] message:[UNAVAILABLE: io exception] +2026-05-08 09:31:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:31:44 [snail-job-grpc-client-executor-127.0.0.1-425] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[425] message:[UNAVAILABLE: io exception] +2026-05-08 09:31:53 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:31:54 [snail-job-grpc-client-executor-127.0.0.1-426] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[426] message:[UNAVAILABLE: io exception] +2026-05-08 09:32:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:32:04 [snail-job-grpc-client-executor-127.0.0.1-427] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[427] message:[UNAVAILABLE: io exception] +2026-05-08 09:32:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:32:14 [snail-job-grpc-client-executor-127.0.0.1-429] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[428] message:[UNAVAILABLE: io exception] +2026-05-08 09:32:16 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[PUT /app/v1/updataPassword],参数类型[json],参数:[{}] +2026-05-08 09:32:16 [XNIO-1 task-2] ERROR o.d.c.w.h.GlobalExceptionHandler - ?????/???? +2026-05-08 09:32:16 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[PUT /app/v1/updataPassword],耗时:[205]毫秒 +2026-05-08 09:32:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:32:24 [snail-job-grpc-client-executor-127.0.0.1-430] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[430] message:[UNAVAILABLE: io exception] +2026-05-08 09:32:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:32:34 [snail-job-grpc-client-executor-127.0.0.1-431] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[431] message:[UNAVAILABLE: io exception] +2026-05-08 09:32:38 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[PUT /app/v1/updataPassword],参数类型[json],参数:[{}] +2026-05-08 09:32:51 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:32:51 [snail-job-grpc-client-executor-127.0.0.1-432] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[432] message:[UNAVAILABLE: io exception] +2026-05-08 09:32:51 [XNIO-1 task-2] ERROR o.d.c.w.h.GlobalExceptionHandler - ?????/???? +2026-05-08 09:32:51 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[PUT /app/v1/updataPassword],耗时:[13021]毫秒 +2026-05-08 09:32:54 [snail-job-grpc-client-executor-127.0.0.1-433] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[433] message:[UNAVAILABLE: io exception] +2026-05-08 09:33:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:33:04 [snail-job-grpc-client-executor-127.0.0.1-434] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[434] message:[UNAVAILABLE: io exception] +2026-05-08 09:33:13 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:33:14 [snail-job-grpc-client-executor-127.0.0.1-435] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[435] message:[UNAVAILABLE: io exception] +2026-05-08 09:33:23 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:33:24 [snail-job-grpc-client-executor-127.0.0.1-437] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[437] message:[UNAVAILABLE: io exception] +2026-05-08 09:33:33 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:33:34 [snail-job-grpc-client-executor-127.0.0.1-438] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[438] message:[UNAVAILABLE: io exception] +2026-05-08 09:33:43 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:33:44 [snail-job-grpc-client-executor-127.0.0.1-439] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[439] message:[UNAVAILABLE: io exception] +2026-05-08 09:33:51 [Thread-5] INFO c.a.s.c.c.window.SlidingRingWindow - JVM is about to exit, emitting data in the Window +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO c.a.s.c.c.init.SnailJobCloseListener - snail-job client about to shutdown v1.9.0 +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO c.a.s.c.c.l.report.AbstractLogReport - AsyncReport Log about to shutdown +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO c.a.s.c.c.window.SlidingRingWindow - Sliding window is about to exit, emitting data in the Window +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO c.a.s.c.c.l.report.AbstractLogReport - AsyncReport Log has been shutdown +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO c.a.s.c.c.init.SnailJobCloseListener - snail-job client closed successfully v1.9.0 +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.23.Final +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO o.d.c.core.config.ThreadPoolConfig - ====关闭后台任务任务线程池==== +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing .... +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated... +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - master - Shutdown completed. +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - dynamic-datasource close the datasource named [master] success, +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye +2026-05-08 09:33:51 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet' +2026-05-08 09:34:00 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.3.Final +2026-05-08 09:34:00 [main] INFO org.dromara.DromaraApplication - Starting DromaraApplication using Java 17.0.17 with PID 31824 (D:\code\water\water-admin\target\classes started by admin in D:\code\water) +2026-05-08 09:34:00 [main] INFO org.dromara.DromaraApplication - The following 1 profile is active: "dev" +2026-05-08 09:34:03 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext +2026-05-08 09:34:04 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it +2026-05-08 09:34:04 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Starting... +2026-05-08 09:34:04 [main] INFO com.zaxxer.hikari.pool.HikariPool - master - Added connection com.mysql.cj.jdbc.ConnectionImpl@4b98c80c +2026-05-08 09:34:04 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Start completed. +2026-05-08 09:34:04 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success +2026-05-08 09:34:04 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +2026-05-08 09:34:05 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class org.dromara.app.domain.AppSchedulingDevice ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2026-05-08 09:34:05 [main] INFO o.d.common.redis.config.RedisConfig - 初始化 redis 配置 +2026-05-08 09:34:05 [main] INFO org.redisson.Version - Redisson 3.52.0 +2026-05-08 09:34:06 [redisson-netty-1-5] INFO o.r.connection.ConnectionsHolder - 1 connections initialized for localhost/127.0.0.1:6379 +2026-05-08 09:34:06 [redisson-netty-1-4] INFO o.r.connection.ConnectionsHolder - 8 connections initialized for localhost/127.0.0.1:6379 +2026-05-08 09:34:07 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 09:34:07 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 09:34:07 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 09:34:07 [main] INFO o.d.common.json.config.JacksonConfig - 初始化 jackson 配置 +2026-05-08 09:34:07 [main] INFO c.a.s.c.s.SnailJobClientJobCoreAutoConfiguration - Snail-Job 客户端IP为: 192.168.0.217 +2026-05-08 09:34:08 [main] INFO c.b.m.e.s.MybatisPlusApplicationContextAware - Register ApplicationContext instances org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@62e6a3ec +2026-05-08 09:34:12 [main] INFO o.d.w.p.modes.sb.config.BeanConfig - 【warm-flow】,加载完成 +2026-05-08 09:34:13 [main] INFO io.undertow - starting server: Undertow - 2.3.23.Final +2026-05-08 09:34:13 [main] INFO org.xnio - XNIO version 3.8.16.Final +2026-05-08 09:34:13 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.16.Final +2026-05-08 09:34:13 [main] INFO org.jboss.threads - JBoss Threads version 3.7.0.Final +2026-05-08 09:34:13 [main] INFO org.dromara.DromaraApplication - Started DromaraApplication in 14.357 seconds (process running for 15.613) +2026-05-08 09:34:13 [main] INFO o.d.c.sse.listener.SseTopicListener - 初始化SSE主题订阅监听器成功 +2026-05-08 09:34:13 [main] INFO o.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功 +2026-05-08 09:34:13 [main] INFO c.a.s.c.c.init.SnailJobStartListener - snail-job client is preparing to start... v1.9.0 +2026-05-08 09:34:14 [main] INFO c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC client started connect to server +2026-05-08 09:34:14 [main] INFO c.a.s.c.c.rpc.server.SnailGrpcServer - ------> snail-job remoting server start success, grpc = com.aizuda.snailjob.client.common.rpc.server.SnailGrpcServer, port = 28081 +2026-05-08 09:34:14 [snail-job-grpc-client-executor-127.0.0.1-0] ERROR c.a.s.c.j.c.r.JobExecutorRegistrar - Job executors register error requestId:[0] message:[UNAVAILABLE: io exception] +2026-05-08 09:34:14 [snail-job-grpc-client-executor-127.0.0.1-2] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1] message:[UNAVAILABLE: io exception] +2026-05-08 09:34:14 [main] INFO c.a.s.c.c.init.SnailJobStartListener - snail-job client started successfully v1.9.0 +2026-05-08 09:34:14 [registrationTask1] WARN d.c.b.a.c.r.DefaultApplicationRegistrator - Failed to register application as Application(name=water-Vue-Plus, managementUrl=http://192.168.111.1:8081/actuator, healthUrl=http://192.168.111.1:8081/actuator/health, serviceUrl=http://192.168.111.1:8081/) at spring-boot-admin ([http://localhost:9090/admin/instances]): I/O error on POST request for "http://localhost:9090/admin/instances": null. Further attempts are logged on DEBUG level +org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://localhost:9090/admin/instances": null + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.createResourceAccessException(DefaultRestClient.java:704) + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.exchangeInternal(DefaultRestClient.java:589) + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.exchange(DefaultRestClient.java:540) + at org.springframework.web.client.RestClient$RequestHeadersSpec.exchange(RestClient.java:677) + at org.springframework.web.client.DefaultRestClient$DefaultResponseSpec.executeAndExtract(DefaultRestClient.java:821) + at org.springframework.web.client.DefaultRestClient$DefaultResponseSpec.body(DefaultRestClient.java:765) + at de.codecentric.boot.admin.client.registration.RestClientRegistrationClient.register(RestClientRegistrationClient.java:45) + at de.codecentric.boot.admin.client.registration.DefaultApplicationRegistrator.register(DefaultApplicationRegistrator.java:80) + at de.codecentric.boot.admin.client.registration.DefaultApplicationRegistrator.register(DefaultApplicationRegistrator.java:61) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.net.ConnectException + at java.net.http/jdk.internal.net.http.common.Utils.toConnectException(Utils.java:1107) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.connectAsync(PlainHttpConnection.java:203) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.checkRetryConnect(PlainHttpConnection.java:238) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$1(PlainHttpConnection.java:214) + at java.base/java.util.concurrent.CompletableFuture.uniHandle(CompletableFuture.java:934) + at java.base/java.util.concurrent.CompletableFuture$UniHandle.tryFire$$$capture(CompletableFuture.java:911) + at java.base/java.util.concurrent.CompletableFuture$UniHandle.tryFire(CompletableFuture.java) + at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run$$$capture(CompletableFuture.java:1773) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java) + ... 3 common frames omitted +Caused by: java.nio.channels.ClosedChannelException + at java.base/sun.nio.ch.SocketChannelImpl.ensureOpen(SocketChannelImpl.java:195) + at java.base/sun.nio.ch.SocketChannelImpl.beginConnect(SocketChannelImpl.java:760) + at java.base/sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:848) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$0(PlainHttpConnection.java:187) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:569) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.connectAsync(PlainHttpConnection.java:189) + ... 11 common frames omitted +2026-05-08 09:34:15 [RMI TCP Connection(19)-192.168.111.1] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet' +2026-05-08 09:34:24 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:34:24 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[PUT /app/v1/updataPassword],参数类型[json],参数:[{}] +2026-05-08 09:34:26 [snail-job-grpc-client-executor-127.0.0.1-3] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3] message:[UNAVAILABLE: io exception] +2026-05-08 09:34:35 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:34:35 [snail-job-grpc-client-executor-127.0.0.1-4] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[4] message:[UNAVAILABLE: io exception] +2026-05-08 09:35:44 [master:housekeeper] WARN com.zaxxer.hikari.pool.HikariPool - master - Thread starvation or clock leap detected (housekeeper delta=1m9s151ms252µs600ns). +2026-05-08 09:35:44 [snail-job-grpc-client-executor-127.0.0.1-6] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[6] message:[UNAVAILABLE: io exception] +2026-05-08 09:35:44 [snail-job-grpc-client-executor-127.0.0.1-7] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[9] message:[UNAVAILABLE: io exception] +2026-05-08 09:35:44 [snail-job-grpc-client-executor-127.0.0.1-9] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[7] message:[UNAVAILABLE: io exception] +2026-05-08 09:35:44 [snail-job-grpc-client-executor-127.0.0.1-11] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[10] message:[UNAVAILABLE: io exception] +2026-05-08 09:35:44 [snail-job-grpc-client-executor-127.0.0.1-10] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[8] message:[UNAVAILABLE: io exception] +2026-05-08 09:35:44 [snail-job-grpc-client-executor-127.0.0.1-8] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[11] message:[UNAVAILABLE: io exception] +2026-05-08 09:35:44 [XNIO-1 task-2] ERROR o.d.c.w.h.GlobalExceptionHandler - ?????/???? +2026-05-08 09:35:44 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[PUT /app/v1/updataPassword],耗时:[79770]毫秒 +2026-05-08 09:35:44 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:35:44 [snail-job-grpc-client-executor-127.0.0.1-12] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[12] message:[UNAVAILABLE: io exception] +2026-05-08 09:35:54 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:35:54 [snail-job-grpc-client-executor-127.0.0.1-13] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[13] message:[UNAVAILABLE: io exception] +2026-05-08 09:36:04 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:36:04 [snail-job-grpc-client-executor-127.0.0.1-14] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[14] message:[UNAVAILABLE: io exception] +2026-05-08 09:36:08 [Thread-5] INFO c.a.s.c.c.window.SlidingRingWindow - JVM is about to exit, emitting data in the Window +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO c.a.s.c.c.init.SnailJobCloseListener - snail-job client about to shutdown v1.9.0 +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO c.a.s.c.c.l.report.AbstractLogReport - AsyncReport Log about to shutdown +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO c.a.s.c.c.window.SlidingRingWindow - Sliding window is about to exit, emitting data in the Window +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO c.a.s.c.c.l.report.AbstractLogReport - AsyncReport Log has been shutdown +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO c.a.s.c.c.init.SnailJobCloseListener - snail-job client closed successfully v1.9.0 +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.23.Final +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO o.d.c.core.config.ThreadPoolConfig - ====关闭后台任务任务线程池==== +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing .... +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated... +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - master - Shutdown completed. +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - dynamic-datasource close the datasource named [master] success, +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye +2026-05-08 09:36:08 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet' +2026-05-08 09:36:12 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.3.Final +2026-05-08 09:36:12 [main] INFO org.dromara.DromaraApplication - Starting DromaraApplication using Java 17.0.17 with PID 29828 (D:\code\water\water-admin\target\classes started by admin in D:\code\water) +2026-05-08 09:36:12 [main] INFO org.dromara.DromaraApplication - The following 1 profile is active: "dev" +2026-05-08 09:36:15 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext +2026-05-08 09:36:15 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it +2026-05-08 09:36:15 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Starting... +2026-05-08 09:36:16 [main] INFO com.zaxxer.hikari.pool.HikariPool - master - Added connection com.mysql.cj.jdbc.ConnectionImpl@564e9c0b +2026-05-08 09:36:16 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Start completed. +2026-05-08 09:36:16 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success +2026-05-08 09:36:16 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +2026-05-08 09:36:17 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class org.dromara.app.domain.AppSchedulingDevice ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2026-05-08 09:36:17 [main] INFO o.d.common.redis.config.RedisConfig - 初始化 redis 配置 +2026-05-08 09:36:17 [main] INFO org.redisson.Version - Redisson 3.52.0 +2026-05-08 09:36:17 [redisson-netty-1-5] INFO o.r.connection.ConnectionsHolder - 1 connections initialized for localhost/127.0.0.1:6379 +2026-05-08 09:36:17 [redisson-netty-1-4] INFO o.r.connection.ConnectionsHolder - 8 connections initialized for localhost/127.0.0.1:6379 +2026-05-08 09:36:18 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 09:36:18 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 09:36:18 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 09:36:19 [main] INFO o.d.common.json.config.JacksonConfig - 初始化 jackson 配置 +2026-05-08 09:36:19 [main] INFO c.a.s.c.s.SnailJobClientJobCoreAutoConfiguration - Snail-Job 客户端IP为: 192.168.0.217 +2026-05-08 09:36:19 [main] INFO c.b.m.e.s.MybatisPlusApplicationContextAware - Register ApplicationContext instances org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1bfe3203 +2026-05-08 09:36:23 [main] INFO o.d.w.p.modes.sb.config.BeanConfig - 【warm-flow】,加载完成 +2026-05-08 09:36:24 [main] INFO io.undertow - starting server: Undertow - 2.3.23.Final +2026-05-08 09:36:24 [main] INFO org.xnio - XNIO version 3.8.16.Final +2026-05-08 09:36:24 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.16.Final +2026-05-08 09:36:24 [main] INFO org.jboss.threads - JBoss Threads version 3.7.0.Final +2026-05-08 09:36:24 [main] INFO org.dromara.DromaraApplication - Started DromaraApplication in 13.274 seconds (process running for 13.964) +2026-05-08 09:36:24 [main] INFO o.d.c.sse.listener.SseTopicListener - 初始化SSE主题订阅监听器成功 +2026-05-08 09:36:24 [main] INFO c.a.s.c.c.init.SnailJobStartListener - snail-job client is preparing to start... v1.9.0 +2026-05-08 09:36:24 [main] INFO c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC client started connect to server +2026-05-08 09:36:24 [main] INFO c.a.s.c.c.rpc.server.SnailGrpcServer - ------> snail-job remoting server start success, grpc = com.aizuda.snailjob.client.common.rpc.server.SnailGrpcServer, port = 28081 +2026-05-08 09:36:25 [snail-job-grpc-client-executor-127.0.0.1-0] ERROR c.a.s.c.j.c.r.JobExecutorRegistrar - Job executors register error requestId:[0] message:[UNAVAILABLE: io exception] +2026-05-08 09:36:25 [main] INFO c.a.s.c.c.init.SnailJobStartListener - snail-job client started successfully v1.9.0 +2026-05-08 09:36:25 [snail-job-grpc-client-executor-127.0.0.1-2] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1] message:[UNAVAILABLE: io exception] +2026-05-08 09:36:25 [main] INFO o.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功 +2026-05-08 09:36:25 [registrationTask1] WARN d.c.b.a.c.r.DefaultApplicationRegistrator - Failed to register application as Application(name=water-Vue-Plus, managementUrl=http://192.168.111.1:8081/actuator, healthUrl=http://192.168.111.1:8081/actuator/health, serviceUrl=http://192.168.111.1:8081/) at spring-boot-admin ([http://localhost:9090/admin/instances]): I/O error on POST request for "http://localhost:9090/admin/instances": null. Further attempts are logged on DEBUG level +org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://localhost:9090/admin/instances": null + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.createResourceAccessException(DefaultRestClient.java:704) + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.exchangeInternal(DefaultRestClient.java:589) + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.exchange(DefaultRestClient.java:540) + at org.springframework.web.client.RestClient$RequestHeadersSpec.exchange(RestClient.java:677) + at org.springframework.web.client.DefaultRestClient$DefaultResponseSpec.executeAndExtract(DefaultRestClient.java:821) + at org.springframework.web.client.DefaultRestClient$DefaultResponseSpec.body(DefaultRestClient.java:765) + at de.codecentric.boot.admin.client.registration.RestClientRegistrationClient.register(RestClientRegistrationClient.java:45) + at de.codecentric.boot.admin.client.registration.DefaultApplicationRegistrator.register(DefaultApplicationRegistrator.java:80) + at de.codecentric.boot.admin.client.registration.DefaultApplicationRegistrator.register(DefaultApplicationRegistrator.java:61) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.net.ConnectException + at java.net.http/jdk.internal.net.http.common.Utils.toConnectException(Utils.java:1107) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.connectAsync(PlainHttpConnection.java:203) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.checkRetryConnect(PlainHttpConnection.java:238) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$1(PlainHttpConnection.java:214) + at java.base/java.util.concurrent.CompletableFuture.uniHandle(CompletableFuture.java:934) + at java.base/java.util.concurrent.CompletableFuture$UniHandle.tryFire$$$capture(CompletableFuture.java:911) + at java.base/java.util.concurrent.CompletableFuture$UniHandle.tryFire(CompletableFuture.java) + at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run$$$capture(CompletableFuture.java:1773) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java) + ... 3 common frames omitted +Caused by: java.nio.channels.ClosedChannelException + at java.base/sun.nio.ch.SocketChannelImpl.ensureOpen(SocketChannelImpl.java:195) + at java.base/sun.nio.ch.SocketChannelImpl.beginConnect(SocketChannelImpl.java:760) + at java.base/sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:848) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$0(PlainHttpConnection.java:187) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:569) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.connectAsync(PlainHttpConnection.java:189) + ... 11 common frames omitted +2026-05-08 09:36:26 [RMI TCP Connection(18)-192.168.111.1] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet' +2026-05-08 09:36:34 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:36:35 [snail-job-grpc-client-executor-127.0.0.1-3] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3] message:[UNAVAILABLE: io exception] +2026-05-08 09:36:44 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:36:45 [snail-job-grpc-client-executor-127.0.0.1-4] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[4] message:[UNAVAILABLE: io exception] +2026-05-08 09:36:54 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:36:55 [snail-job-grpc-client-executor-127.0.0.1-5] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[5] message:[UNAVAILABLE: io exception] +2026-05-08 09:37:04 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:37:05 [snail-job-grpc-client-executor-127.0.0.1-6] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[6] message:[UNAVAILABLE: io exception] +2026-05-08 09:37:14 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:37:15 [snail-job-grpc-client-executor-127.0.0.1-7] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[7] message:[UNAVAILABLE: io exception] +2026-05-08 09:37:24 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:37:25 [snail-job-grpc-client-executor-127.0.0.1-8] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[8] message:[UNAVAILABLE: io exception] +2026-05-08 09:37:34 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:37:35 [snail-job-grpc-client-executor-127.0.0.1-10] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[10] message:[UNAVAILABLE: io exception] +2026-05-08 09:37:44 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:37:45 [snail-job-grpc-client-executor-127.0.0.1-11] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[11] message:[UNAVAILABLE: io exception] +2026-05-08 09:37:54 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:37:55 [snail-job-grpc-client-executor-127.0.0.1-12] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[12] message:[UNAVAILABLE: io exception] +2026-05-08 09:38:04 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:38:05 [snail-job-grpc-client-executor-127.0.0.1-13] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[13] message:[UNAVAILABLE: io exception] +2026-05-08 09:38:14 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:38:15 [snail-job-grpc-client-executor-127.0.0.1-14] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[14] message:[UNAVAILABLE: io exception] +2026-05-08 09:38:24 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:38:25 [snail-job-grpc-client-executor-127.0.0.1-15] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[16] message:[UNAVAILABLE: io exception] +2026-05-08 09:38:34 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:38:35 [snail-job-grpc-client-executor-127.0.0.1-17] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[17] message:[UNAVAILABLE: io exception] +2026-05-08 09:38:44 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:38:45 [snail-job-grpc-client-executor-127.0.0.1-18] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[18] message:[UNAVAILABLE: io exception] +2026-05-08 09:38:54 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:38:55 [snail-job-grpc-client-executor-127.0.0.1-19] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[19] message:[UNAVAILABLE: io exception] +2026-05-08 09:39:04 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:39:05 [snail-job-grpc-client-executor-127.0.0.1-20] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[20] message:[UNAVAILABLE: io exception] +2026-05-08 09:39:14 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:39:15 [snail-job-grpc-client-executor-127.0.0.1-21] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[21] message:[UNAVAILABLE: io exception] +2026-05-08 09:39:24 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:39:25 [snail-job-grpc-client-executor-127.0.0.1-23] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[23] message:[UNAVAILABLE: io exception] +2026-05-08 09:39:34 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:39:35 [snail-job-grpc-client-executor-127.0.0.1-24] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[24] message:[UNAVAILABLE: io exception] +2026-05-08 09:39:44 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:39:45 [snail-job-grpc-client-executor-127.0.0.1-25] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[25] message:[UNAVAILABLE: io exception] +2026-05-08 09:39:54 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:39:55 [snail-job-grpc-client-executor-127.0.0.1-26] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[26] message:[UNAVAILABLE: io exception] +2026-05-08 09:40:04 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:40:05 [snail-job-grpc-client-executor-127.0.0.1-27] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[27] message:[UNAVAILABLE: io exception] +2026-05-08 09:40:14 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:40:15 [snail-job-grpc-client-executor-127.0.0.1-28] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[28] message:[UNAVAILABLE: io exception] +2026-05-08 09:40:24 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:40:25 [snail-job-grpc-client-executor-127.0.0.1-29] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[29] message:[UNAVAILABLE: io exception] +2026-05-08 09:40:27 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[PUT /app/v1/updataPassword],参数类型[json],参数:[{}] +2026-05-08 09:41:50 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:41:50 [master:housekeeper] WARN com.zaxxer.hikari.pool.HikariPool - master - Thread starvation or clock leap detected (housekeeper delta=1m34s109ms425µs300ns). +2026-05-08 09:41:50 [snail-job-grpc-client-executor-127.0.0.1-32] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[31] message:[UNAVAILABLE: io exception] +2026-05-08 09:41:50 [snail-job-grpc-client-executor-127.0.0.1-34] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[35] message:[UNAVAILABLE: io exception] +2026-05-08 09:41:50 [snail-job-grpc-client-executor-127.0.0.1-33] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[33] message:[UNAVAILABLE: io exception] +2026-05-08 09:41:50 [snail-job-grpc-client-executor-127.0.0.1-35] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[36] message:[UNAVAILABLE: io exception] +2026-05-08 09:41:50 [snail-job-grpc-client-executor-127.0.0.1-37] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[37] message:[UNAVAILABLE: io exception] +2026-05-08 09:41:50 [snail-job-grpc-client-executor-127.0.0.1-36] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[34] message:[UNAVAILABLE: io exception] +2026-05-08 09:41:50 [snail-job-grpc-client-executor-127.0.0.1-38] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[38] message:[UNAVAILABLE: io exception] +2026-05-08 09:41:50 [snail-job-grpc-client-executor-127.0.0.1-39] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[39] message:[UNAVAILABLE: io exception] +2026-05-08 09:41:55 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:41:55 [snail-job-grpc-client-executor-127.0.0.1-40] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[40] message:[UNAVAILABLE: io exception] +2026-05-08 09:42:04 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[PUT /app/v1/updataPassword],耗时:[96166]毫秒 +2026-05-08 09:42:05 [snail-job-grpc-client-executor-127.0.0.1-41] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[41] message:[UNAVAILABLE: io exception] +2026-05-08 09:42:14 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:42:15 [snail-job-grpc-client-executor-127.0.0.1-42] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[42] message:[UNAVAILABLE: io exception] +2026-05-08 09:42:24 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:42:25 [snail-job-grpc-client-executor-127.0.0.1-44] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[43] message:[UNAVAILABLE: io exception] +2026-05-08 09:42:34 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:42:35 [snail-job-grpc-client-executor-127.0.0.1-45] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[45] message:[UNAVAILABLE: io exception] +2026-05-08 09:42:41 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[PUT /app/v1/updataPassword],参数类型[json],参数:[{}] +2026-05-08 09:42:41 [XNIO-1 task-2] ERROR o.d.c.w.h.GlobalExceptionHandler - 用户不存在/密码错误 +2026-05-08 09:42:41 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[PUT /app/v1/updataPassword],耗时:[81]毫秒 +2026-05-08 09:42:44 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:42:45 [snail-job-grpc-client-executor-127.0.0.1-46] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[46] message:[UNAVAILABLE: io exception] +2026-05-08 09:42:48 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[PUT /app/v1/updataPassword],参数类型[json],参数:[{}] +2026-05-08 09:42:49 [XNIO-1 task-2] ERROR o.d.c.w.h.GlobalExceptionHandler - 用户不存在/密码错误 +2026-05-08 09:42:49 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[PUT /app/v1/updataPassword],耗时:[68]毫秒 +2026-05-08 09:42:54 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:42:55 [snail-job-grpc-client-executor-127.0.0.1-47] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[47] message:[UNAVAILABLE: io exception] +2026-05-08 09:43:04 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:43:05 [snail-job-grpc-client-executor-127.0.0.1-48] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[48] message:[UNAVAILABLE: io exception] +2026-05-08 09:43:14 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:43:15 [snail-job-grpc-client-executor-127.0.0.1-49] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[49] message:[UNAVAILABLE: io exception] +2026-05-08 09:43:24 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:43:25 [snail-job-grpc-client-executor-127.0.0.1-50] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[50] message:[UNAVAILABLE: io exception] +2026-05-08 09:43:34 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:43:35 [snail-job-grpc-client-executor-127.0.0.1-52] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[52] message:[UNAVAILABLE: io exception] +2026-05-08 09:43:44 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:43:45 [snail-job-grpc-client-executor-127.0.0.1-53] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[53] message:[UNAVAILABLE: io exception] +2026-05-08 09:43:54 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:43:55 [snail-job-grpc-client-executor-127.0.0.1-54] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[54] message:[UNAVAILABLE: io exception] +2026-05-08 09:44:02 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[PUT /app/v1/updataPassword],参数类型[json],参数:[{}] +2026-05-08 09:44:04 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:44:05 [snail-job-grpc-client-executor-127.0.0.1-55] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[55] message:[UNAVAILABLE: io exception] +2026-05-08 09:44:18 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:44:18 [snail-job-grpc-client-executor-127.0.0.1-56] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[56] message:[UNAVAILABLE: io exception] +2026-05-08 09:44:27 [snail-job-grpc-client-executor-127.0.0.1-57] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[57] message:[UNAVAILABLE: io exception] +2026-05-08 09:44:27 [XNIO-1 task-2] ERROR o.d.c.w.h.GlobalExceptionHandler - 用户不存在/密码错误 +2026-05-08 09:44:27 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[PUT /app/v1/updataPassword],耗时:[25474]毫秒 +2026-05-08 09:44:34 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:44:35 [snail-job-grpc-client-executor-127.0.0.1-59] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[59] message:[UNAVAILABLE: io exception] +2026-05-08 09:44:44 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:44:45 [snail-job-grpc-client-executor-127.0.0.1-60] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[60] message:[UNAVAILABLE: io exception] +2026-05-08 09:44:54 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:44:55 [snail-job-grpc-client-executor-127.0.0.1-61] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[61] message:[UNAVAILABLE: io exception] +2026-05-08 09:45:04 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:45:05 [snail-job-grpc-client-executor-127.0.0.1-62] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[62] message:[UNAVAILABLE: io exception] +2026-05-08 09:45:14 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:45:15 [snail-job-grpc-client-executor-127.0.0.1-63] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[63] message:[UNAVAILABLE: io exception] +2026-05-08 09:45:24 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:45:25 [snail-job-grpc-client-executor-127.0.0.1-65] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[64] message:[UNAVAILABLE: io exception] +2026-05-08 09:45:34 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:45:35 [snail-job-grpc-client-executor-127.0.0.1-66] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[66] message:[UNAVAILABLE: io exception] +2026-05-08 09:45:44 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:45:45 [snail-job-grpc-client-executor-127.0.0.1-67] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[67] message:[UNAVAILABLE: io exception] +2026-05-08 09:45:54 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:45:55 [snail-job-grpc-client-executor-127.0.0.1-68] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[68] message:[UNAVAILABLE: io exception] +2026-05-08 09:46:04 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:46:05 [snail-job-grpc-client-executor-127.0.0.1-69] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[69] message:[UNAVAILABLE: io exception] +2026-05-08 09:46:10 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[PUT /app/v1/updataPassword],参数类型[json],参数:[{}] +2026-05-08 09:46:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:46:17 [snail-job-grpc-client-executor-127.0.0.1-70] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[70] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:11 [master:housekeeper] WARN com.zaxxer.hikari.pool.HikariPool - master - Thread starvation or clock leap detected (housekeeper delta=2m14s112ms35µs100ns). +2026-05-08 09:48:11 [snail-job-grpc-client-executor-127.0.0.1-71] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[72] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:11 [snail-job-grpc-client-executor-127.0.0.1-75] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[78] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:11 [snail-job-grpc-client-executor-127.0.0.1-77] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[82] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:11 [snail-job-grpc-client-executor-127.0.0.1-76] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[83] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:11 [snail-job-grpc-client-executor-127.0.0.1-78] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[79] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:11 [snail-job-grpc-client-executor-127.0.0.1-74] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[76] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:11 [snail-job-grpc-client-executor-127.0.0.1-79] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[74] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:11 [snail-job-grpc-client-executor-127.0.0.1-80] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[77] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:11 [snail-job-grpc-client-executor-127.0.0.1-81] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[80] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:11 [snail-job-grpc-client-executor-127.0.0.1-82] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[81] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:11 [snail-job-grpc-client-executor-127.0.0.1-83] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[75] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:11 [XNIO-1 task-2] ERROR o.d.c.w.h.GlobalExceptionHandler - 用户不存在/密码错误 +2026-05-08 09:48:11 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[PUT /app/v1/updataPassword],耗时:[120991]毫秒 +2026-05-08 09:48:11 [Thread-5] INFO c.a.s.c.c.window.SlidingRingWindow - JVM is about to exit, emitting data in the Window +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO c.a.s.c.c.init.SnailJobCloseListener - snail-job client about to shutdown v1.9.0 +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO c.a.s.c.c.l.report.AbstractLogReport - AsyncReport Log about to shutdown +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO c.a.s.c.c.window.SlidingRingWindow - Sliding window is about to exit, emitting data in the Window +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO c.a.s.c.c.l.report.AbstractLogReport - AsyncReport Log has been shutdown +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO c.a.s.c.c.init.SnailJobCloseListener - snail-job client closed successfully v1.9.0 +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.23.Final +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO o.d.c.core.config.ThreadPoolConfig - ====关闭后台任务任务线程池==== +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing .... +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated... +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - master - Shutdown completed. +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - dynamic-datasource close the datasource named [master] success, +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye +2026-05-08 09:48:11 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet' +2026-05-08 09:48:16 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.3.Final +2026-05-08 09:48:16 [main] INFO org.dromara.DromaraApplication - Starting DromaraApplication using Java 17.0.17 with PID 25748 (D:\code\water\water-admin\target\classes started by admin in D:\code\water) +2026-05-08 09:48:16 [main] INFO org.dromara.DromaraApplication - The following 1 profile is active: "dev" +2026-05-08 09:48:20 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext +2026-05-08 09:48:20 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it +2026-05-08 09:48:20 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Starting... +2026-05-08 09:48:20 [main] INFO com.zaxxer.hikari.pool.HikariPool - master - Added connection com.mysql.cj.jdbc.ConnectionImpl@5367d46f +2026-05-08 09:48:20 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Start completed. +2026-05-08 09:48:20 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success +2026-05-08 09:48:20 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +2026-05-08 09:48:21 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class org.dromara.app.domain.AppSchedulingDevice ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2026-05-08 09:48:22 [main] INFO o.d.common.redis.config.RedisConfig - 初始化 redis 配置 +2026-05-08 09:48:22 [main] INFO org.redisson.Version - Redisson 3.52.0 +2026-05-08 09:48:22 [redisson-netty-1-5] INFO o.r.connection.ConnectionsHolder - 1 connections initialized for localhost/127.0.0.1:6379 +2026-05-08 09:48:22 [redisson-netty-1-4] INFO o.r.connection.ConnectionsHolder - 8 connections initialized for localhost/127.0.0.1:6379 +2026-05-08 09:48:23 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 09:48:23 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 09:48:23 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 09:48:23 [main] INFO o.d.common.json.config.JacksonConfig - 初始化 jackson 配置 +2026-05-08 09:48:23 [main] INFO c.a.s.c.s.SnailJobClientJobCoreAutoConfiguration - Snail-Job 客户端IP为: 192.168.0.217 +2026-05-08 09:48:23 [main] INFO c.b.m.e.s.MybatisPlusApplicationContextAware - Register ApplicationContext instances org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1bfe3203 +2026-05-08 09:48:29 [main] INFO o.d.w.p.modes.sb.config.BeanConfig - 【warm-flow】,加载完成 +2026-05-08 09:48:30 [main] INFO io.undertow - starting server: Undertow - 2.3.23.Final +2026-05-08 09:48:30 [main] INFO org.xnio - XNIO version 3.8.16.Final +2026-05-08 09:48:30 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.16.Final +2026-05-08 09:48:30 [main] INFO org.jboss.threads - JBoss Threads version 3.7.0.Final +2026-05-08 09:48:30 [main] INFO org.dromara.DromaraApplication - Started DromaraApplication in 14.624 seconds (process running for 15.444) +2026-05-08 09:48:30 [SpringApplicationShutdownHook] INFO c.a.s.c.c.init.SnailJobCloseListener - snail-job client about to shutdown v1.9.0 +2026-05-08 09:48:30 [SpringApplicationShutdownHook] INFO c.a.s.c.c.init.SnailJobCloseListener - snail-job client closed successfully v1.9.0 +2026-05-08 09:48:30 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.23.Final +2026-05-08 09:48:30 [main] INFO o.d.c.sse.listener.SseTopicListener - 初始化SSE主题订阅监听器成功 +2026-05-08 09:48:30 [main] INFO c.a.s.c.c.init.SnailJobStartListener - snail-job client is preparing to start... v1.9.0 +2026-05-08 09:48:30 [SpringApplicationShutdownHook] INFO o.d.c.core.config.ThreadPoolConfig - ====关闭后台任务任务线程池==== +2026-05-08 09:48:30 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing .... +2026-05-08 09:48:30 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated... +2026-05-08 09:48:30 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - master - Shutdown completed. +2026-05-08 09:48:30 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - dynamic-datasource close the datasource named [master] success, +2026-05-08 09:48:30 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye +2026-05-08 09:48:34 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.3.Final +2026-05-08 09:48:34 [main] INFO org.dromara.DromaraApplication - Starting DromaraApplication using Java 17.0.17 with PID 13240 (D:\code\water\water-admin\target\classes started by admin in D:\code\water) +2026-05-08 09:48:34 [main] INFO org.dromara.DromaraApplication - The following 1 profile is active: "dev" +2026-05-08 09:48:37 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext +2026-05-08 09:48:38 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it +2026-05-08 09:48:38 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Starting... +2026-05-08 09:48:38 [main] INFO com.zaxxer.hikari.pool.HikariPool - master - Added connection com.mysql.cj.jdbc.ConnectionImpl@1001b435 +2026-05-08 09:48:38 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Start completed. +2026-05-08 09:48:38 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success +2026-05-08 09:48:38 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +2026-05-08 09:48:39 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class org.dromara.app.domain.AppSchedulingDevice ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2026-05-08 09:48:39 [main] INFO o.d.common.redis.config.RedisConfig - 初始化 redis 配置 +2026-05-08 09:48:39 [main] INFO org.redisson.Version - Redisson 3.52.0 +2026-05-08 09:48:39 [redisson-netty-1-5] INFO o.r.connection.ConnectionsHolder - 1 connections initialized for localhost/127.0.0.1:6379 +2026-05-08 09:48:40 [redisson-netty-1-4] INFO o.r.connection.ConnectionsHolder - 8 connections initialized for localhost/127.0.0.1:6379 +2026-05-08 09:48:40 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 09:48:40 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 09:48:40 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 09:48:41 [main] INFO o.d.common.json.config.JacksonConfig - 初始化 jackson 配置 +2026-05-08 09:48:41 [main] INFO c.a.s.c.s.SnailJobClientJobCoreAutoConfiguration - Snail-Job 客户端IP为: 192.168.0.217 +2026-05-08 09:48:41 [main] INFO c.b.m.e.s.MybatisPlusApplicationContextAware - Register ApplicationContext instances org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@62e6a3ec +2026-05-08 09:48:45 [main] INFO o.d.w.p.modes.sb.config.BeanConfig - 【warm-flow】,加载完成 +2026-05-08 09:48:46 [main] INFO io.undertow - starting server: Undertow - 2.3.23.Final +2026-05-08 09:48:46 [main] INFO org.xnio - XNIO version 3.8.16.Final +2026-05-08 09:48:46 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.16.Final +2026-05-08 09:48:46 [main] INFO org.jboss.threads - JBoss Threads version 3.7.0.Final +2026-05-08 09:48:46 [main] INFO org.dromara.DromaraApplication - Started DromaraApplication in 12.57 seconds (process running for 13.202) +2026-05-08 09:48:46 [main] INFO o.d.c.sse.listener.SseTopicListener - 初始化SSE主题订阅监听器成功 +2026-05-08 09:48:46 [main] INFO c.a.s.c.c.init.SnailJobStartListener - snail-job client is preparing to start... v1.9.0 +2026-05-08 09:48:47 [main] INFO c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC client started connect to server +2026-05-08 09:48:47 [main] INFO c.a.s.c.c.rpc.server.SnailGrpcServer - ------> snail-job remoting server start success, grpc = com.aizuda.snailjob.client.common.rpc.server.SnailGrpcServer, port = 28081 +2026-05-08 09:48:47 [snail-job-grpc-client-executor-127.0.0.1-0] ERROR c.a.s.c.j.c.r.JobExecutorRegistrar - Job executors register error requestId:[0] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:47 [main] INFO c.a.s.c.c.init.SnailJobStartListener - snail-job client started successfully v1.9.0 +2026-05-08 09:48:47 [snail-job-grpc-client-executor-127.0.0.1-2] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1] message:[UNAVAILABLE: io exception] +2026-05-08 09:48:47 [main] INFO o.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功 +2026-05-08 09:48:48 [registrationTask1] WARN d.c.b.a.c.r.DefaultApplicationRegistrator - Failed to register application as Application(name=water-Vue-Plus, managementUrl=http://192.168.111.1:8081/actuator, healthUrl=http://192.168.111.1:8081/actuator/health, serviceUrl=http://192.168.111.1:8081/) at spring-boot-admin ([http://localhost:9090/admin/instances]): I/O error on POST request for "http://localhost:9090/admin/instances": null. Further attempts are logged on DEBUG level +org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://localhost:9090/admin/instances": null + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.createResourceAccessException(DefaultRestClient.java:704) + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.exchangeInternal(DefaultRestClient.java:589) + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.exchange(DefaultRestClient.java:540) + at org.springframework.web.client.RestClient$RequestHeadersSpec.exchange(RestClient.java:677) + at org.springframework.web.client.DefaultRestClient$DefaultResponseSpec.executeAndExtract(DefaultRestClient.java:821) + at org.springframework.web.client.DefaultRestClient$DefaultResponseSpec.body(DefaultRestClient.java:765) + at de.codecentric.boot.admin.client.registration.RestClientRegistrationClient.register(RestClientRegistrationClient.java:45) + at de.codecentric.boot.admin.client.registration.DefaultApplicationRegistrator.register(DefaultApplicationRegistrator.java:80) + at de.codecentric.boot.admin.client.registration.DefaultApplicationRegistrator.register(DefaultApplicationRegistrator.java:61) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.net.ConnectException + at java.net.http/jdk.internal.net.http.common.Utils.toConnectException(Utils.java:1107) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.connectAsync(PlainHttpConnection.java:203) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.checkRetryConnect(PlainHttpConnection.java:238) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$1(PlainHttpConnection.java:214) + at java.base/java.util.concurrent.CompletableFuture.uniHandle(CompletableFuture.java:934) + at java.base/java.util.concurrent.CompletableFuture$UniHandle.tryFire$$$capture(CompletableFuture.java:911) + at java.base/java.util.concurrent.CompletableFuture$UniHandle.tryFire(CompletableFuture.java) + at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run$$$capture(CompletableFuture.java:1773) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java) + ... 3 common frames omitted +Caused by: java.nio.channels.ClosedChannelException + at java.base/sun.nio.ch.SocketChannelImpl.ensureOpen(SocketChannelImpl.java:195) + at java.base/sun.nio.ch.SocketChannelImpl.beginConnect(SocketChannelImpl.java:760) + at java.base/sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:848) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$0(PlainHttpConnection.java:187) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:569) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.connectAsync(PlainHttpConnection.java:189) + ... 11 common frames omitted +2026-05-08 09:48:48 [RMI TCP Connection(6)-192.168.111.1] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet' +2026-05-08 09:48:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:48:57 [snail-job-grpc-client-executor-127.0.0.1-3] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3] message:[UNAVAILABLE: io exception] +2026-05-08 09:49:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:49:07 [snail-job-grpc-client-executor-127.0.0.1-4] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[4] message:[UNAVAILABLE: io exception] +2026-05-08 09:49:09 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[PUT /app/v1/updataPassword],参数类型[json],参数:[{}] +2026-05-08 09:49:09 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[PUT /app/v1/updataPassword],耗时:[361]毫秒 +2026-05-08 09:49:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:49:17 [snail-job-grpc-client-executor-127.0.0.1-5] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[5] message:[UNAVAILABLE: io exception] +2026-05-08 09:49:20 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[PUT /app/v1/updataPassword],参数类型[json],参数:[{}] +2026-05-08 09:49:28 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:49:28 [snail-job-grpc-client-executor-127.0.0.1-6] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[6] message:[UNAVAILABLE: io exception] +2026-05-08 09:49:28 [XNIO-1 task-2] ERROR o.d.c.w.h.GlobalExceptionHandler - 用户不存在/密码错误 +2026-05-08 09:49:28 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[PUT /app/v1/updataPassword],耗时:[7813]毫秒 +2026-05-08 09:49:37 [snail-job-grpc-client-executor-127.0.0.1-7] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[7] message:[UNAVAILABLE: io exception] +2026-05-08 09:49:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:49:47 [snail-job-grpc-client-executor-127.0.0.1-8] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[9] message:[UNAVAILABLE: io exception] +2026-05-08 09:49:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:49:57 [snail-job-grpc-client-executor-127.0.0.1-10] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[10] message:[UNAVAILABLE: io exception] +2026-05-08 09:50:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:50:07 [snail-job-grpc-client-executor-127.0.0.1-11] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[11] message:[UNAVAILABLE: io exception] +2026-05-08 09:50:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:50:17 [snail-job-grpc-client-executor-127.0.0.1-12] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[12] message:[UNAVAILABLE: io exception] +2026-05-08 09:50:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:50:27 [snail-job-grpc-client-executor-127.0.0.1-13] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[13] message:[UNAVAILABLE: io exception] +2026-05-08 09:50:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:50:37 [snail-job-grpc-client-executor-127.0.0.1-14] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[14] message:[UNAVAILABLE: io exception] +2026-05-08 09:50:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:50:47 [snail-job-grpc-client-executor-127.0.0.1-16] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[16] message:[UNAVAILABLE: io exception] +2026-05-08 09:50:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:50:57 [snail-job-grpc-client-executor-127.0.0.1-17] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[17] message:[UNAVAILABLE: io exception] +2026-05-08 09:51:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:51:07 [snail-job-grpc-client-executor-127.0.0.1-18] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[18] message:[UNAVAILABLE: io exception] +2026-05-08 09:51:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:51:17 [snail-job-grpc-client-executor-127.0.0.1-19] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[19] message:[UNAVAILABLE: io exception] +2026-05-08 09:51:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:51:27 [snail-job-grpc-client-executor-127.0.0.1-20] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[20] message:[UNAVAILABLE: io exception] +2026-05-08 09:51:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:51:37 [snail-job-grpc-client-executor-127.0.0.1-21] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[21] message:[UNAVAILABLE: io exception] +2026-05-08 09:51:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:51:47 [snail-job-grpc-client-executor-127.0.0.1-22] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[23] message:[UNAVAILABLE: io exception] +2026-05-08 09:51:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:51:57 [snail-job-grpc-client-executor-127.0.0.1-24] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[24] message:[UNAVAILABLE: io exception] +2026-05-08 09:52:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:52:07 [snail-job-grpc-client-executor-127.0.0.1-25] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[25] message:[UNAVAILABLE: io exception] +2026-05-08 09:52:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:52:17 [snail-job-grpc-client-executor-127.0.0.1-26] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[26] message:[UNAVAILABLE: io exception] +2026-05-08 09:52:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:52:27 [snail-job-grpc-client-executor-127.0.0.1-27] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[27] message:[UNAVAILABLE: io exception] +2026-05-08 09:52:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:52:37 [snail-job-grpc-client-executor-127.0.0.1-28] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[28] message:[UNAVAILABLE: io exception] +2026-05-08 09:52:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:52:47 [snail-job-grpc-client-executor-127.0.0.1-29] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[29] message:[UNAVAILABLE: io exception] +2026-05-08 09:52:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:52:57 [snail-job-grpc-client-executor-127.0.0.1-31] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[31] message:[UNAVAILABLE: io exception] +2026-05-08 09:53:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:53:07 [snail-job-grpc-client-executor-127.0.0.1-32] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[32] message:[UNAVAILABLE: io exception] +2026-05-08 09:53:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:53:17 [snail-job-grpc-client-executor-127.0.0.1-33] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[33] message:[UNAVAILABLE: io exception] +2026-05-08 09:53:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:53:27 [snail-job-grpc-client-executor-127.0.0.1-34] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[34] message:[UNAVAILABLE: io exception] +2026-05-08 09:53:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:53:37 [snail-job-grpc-client-executor-127.0.0.1-35] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[35] message:[UNAVAILABLE: io exception] +2026-05-08 09:53:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:53:47 [snail-job-grpc-client-executor-127.0.0.1-36] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[37] message:[UNAVAILABLE: io exception] +2026-05-08 09:53:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:53:57 [snail-job-grpc-client-executor-127.0.0.1-38] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[38] message:[UNAVAILABLE: io exception] +2026-05-08 09:54:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:54:07 [snail-job-grpc-client-executor-127.0.0.1-39] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[39] message:[UNAVAILABLE: io exception] +2026-05-08 09:54:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:54:17 [snail-job-grpc-client-executor-127.0.0.1-40] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[40] message:[UNAVAILABLE: io exception] +2026-05-08 09:54:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:54:27 [snail-job-grpc-client-executor-127.0.0.1-41] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[41] message:[UNAVAILABLE: io exception] +2026-05-08 09:54:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:54:37 [snail-job-grpc-client-executor-127.0.0.1-42] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[42] message:[UNAVAILABLE: io exception] +2026-05-08 09:54:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:54:47 [snail-job-grpc-client-executor-127.0.0.1-43] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[44] message:[UNAVAILABLE: io exception] +2026-05-08 09:54:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:54:57 [snail-job-grpc-client-executor-127.0.0.1-45] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[45] message:[UNAVAILABLE: io exception] +2026-05-08 09:55:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:55:07 [snail-job-grpc-client-executor-127.0.0.1-46] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[46] message:[UNAVAILABLE: io exception] +2026-05-08 09:55:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:55:17 [snail-job-grpc-client-executor-127.0.0.1-47] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[47] message:[UNAVAILABLE: io exception] +2026-05-08 09:55:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:55:27 [snail-job-grpc-client-executor-127.0.0.1-48] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[48] message:[UNAVAILABLE: io exception] +2026-05-08 09:55:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:55:37 [snail-job-grpc-client-executor-127.0.0.1-49] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[49] message:[UNAVAILABLE: io exception] +2026-05-08 09:55:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:55:47 [snail-job-grpc-client-executor-127.0.0.1-51] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[51] message:[UNAVAILABLE: io exception] +2026-05-08 09:55:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:55:57 [snail-job-grpc-client-executor-127.0.0.1-52] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[52] message:[UNAVAILABLE: io exception] +2026-05-08 09:56:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:56:07 [snail-job-grpc-client-executor-127.0.0.1-53] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[53] message:[UNAVAILABLE: io exception] +2026-05-08 09:56:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:56:17 [snail-job-grpc-client-executor-127.0.0.1-54] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[54] message:[UNAVAILABLE: io exception] +2026-05-08 09:56:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:56:27 [snail-job-grpc-client-executor-127.0.0.1-55] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[55] message:[UNAVAILABLE: io exception] +2026-05-08 09:56:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:56:37 [snail-job-grpc-client-executor-127.0.0.1-56] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[56] message:[UNAVAILABLE: io exception] +2026-05-08 09:56:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:56:47 [snail-job-grpc-client-executor-127.0.0.1-57] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[58] message:[UNAVAILABLE: io exception] +2026-05-08 09:56:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:56:57 [snail-job-grpc-client-executor-127.0.0.1-59] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[59] message:[UNAVAILABLE: io exception] +2026-05-08 09:57:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:57:07 [snail-job-grpc-client-executor-127.0.0.1-60] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[60] message:[UNAVAILABLE: io exception] +2026-05-08 09:57:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:57:17 [snail-job-grpc-client-executor-127.0.0.1-61] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[61] message:[UNAVAILABLE: io exception] +2026-05-08 09:57:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:57:27 [snail-job-grpc-client-executor-127.0.0.1-62] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[62] message:[UNAVAILABLE: io exception] +2026-05-08 09:57:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:57:37 [snail-job-grpc-client-executor-127.0.0.1-63] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[63] message:[UNAVAILABLE: io exception] +2026-05-08 09:57:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:57:47 [snail-job-grpc-client-executor-127.0.0.1-64] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[64] message:[UNAVAILABLE: io exception] +2026-05-08 09:57:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:57:57 [snail-job-grpc-client-executor-127.0.0.1-66] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[66] message:[UNAVAILABLE: io exception] +2026-05-08 09:58:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:58:07 [snail-job-grpc-client-executor-127.0.0.1-67] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[67] message:[UNAVAILABLE: io exception] +2026-05-08 09:58:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:58:17 [snail-job-grpc-client-executor-127.0.0.1-68] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[68] message:[UNAVAILABLE: io exception] +2026-05-08 09:58:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:58:27 [snail-job-grpc-client-executor-127.0.0.1-69] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[69] message:[UNAVAILABLE: io exception] +2026-05-08 09:58:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:58:37 [snail-job-grpc-client-executor-127.0.0.1-70] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[70] message:[UNAVAILABLE: io exception] +2026-05-08 09:58:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:58:47 [snail-job-grpc-client-executor-127.0.0.1-71] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[71] message:[UNAVAILABLE: io exception] +2026-05-08 09:58:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:58:57 [snail-job-grpc-client-executor-127.0.0.1-73] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[73] message:[UNAVAILABLE: io exception] +2026-05-08 09:59:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:59:07 [snail-job-grpc-client-executor-127.0.0.1-74] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[74] message:[UNAVAILABLE: io exception] +2026-05-08 09:59:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:59:17 [snail-job-grpc-client-executor-127.0.0.1-75] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[75] message:[UNAVAILABLE: io exception] +2026-05-08 09:59:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:59:27 [snail-job-grpc-client-executor-127.0.0.1-76] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[76] message:[UNAVAILABLE: io exception] +2026-05-08 09:59:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:59:37 [snail-job-grpc-client-executor-127.0.0.1-77] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[77] message:[UNAVAILABLE: io exception] +2026-05-08 09:59:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:59:47 [snail-job-grpc-client-executor-127.0.0.1-79] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[78] message:[UNAVAILABLE: io exception] +2026-05-08 09:59:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 09:59:57 [snail-job-grpc-client-executor-127.0.0.1-80] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[80] message:[UNAVAILABLE: io exception] +2026-05-08 10:00:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:00:07 [snail-job-grpc-client-executor-127.0.0.1-81] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[81] message:[UNAVAILABLE: io exception] +2026-05-08 10:00:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:00:17 [snail-job-grpc-client-executor-127.0.0.1-82] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[82] message:[UNAVAILABLE: io exception] +2026-05-08 10:00:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:00:27 [snail-job-grpc-client-executor-127.0.0.1-83] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[83] message:[UNAVAILABLE: io exception] +2026-05-08 10:00:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:00:37 [snail-job-grpc-client-executor-127.0.0.1-84] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[84] message:[UNAVAILABLE: io exception] +2026-05-08 10:00:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:00:47 [snail-job-grpc-client-executor-127.0.0.1-85] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[85] message:[UNAVAILABLE: io exception] +2026-05-08 10:00:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:00:57 [snail-job-grpc-client-executor-127.0.0.1-87] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[87] message:[UNAVAILABLE: io exception] +2026-05-08 10:01:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:01:07 [snail-job-grpc-client-executor-127.0.0.1-88] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[88] message:[UNAVAILABLE: io exception] +2026-05-08 10:01:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:01:17 [snail-job-grpc-client-executor-127.0.0.1-89] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[89] message:[UNAVAILABLE: io exception] +2026-05-08 10:01:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:01:27 [snail-job-grpc-client-executor-127.0.0.1-90] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[90] message:[UNAVAILABLE: io exception] +2026-05-08 10:01:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:01:37 [snail-job-grpc-client-executor-127.0.0.1-91] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[91] message:[UNAVAILABLE: io exception] +2026-05-08 10:01:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:01:47 [snail-job-grpc-client-executor-127.0.0.1-92] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[93] message:[UNAVAILABLE: io exception] +2026-05-08 10:01:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:01:57 [snail-job-grpc-client-executor-127.0.0.1-94] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[94] message:[UNAVAILABLE: io exception] +2026-05-08 10:02:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:02:07 [snail-job-grpc-client-executor-127.0.0.1-95] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[95] message:[UNAVAILABLE: io exception] +2026-05-08 10:02:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:02:17 [snail-job-grpc-client-executor-127.0.0.1-96] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[96] message:[UNAVAILABLE: io exception] +2026-05-08 10:02:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:02:27 [snail-job-grpc-client-executor-127.0.0.1-97] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[97] message:[UNAVAILABLE: io exception] +2026-05-08 10:02:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:02:37 [snail-job-grpc-client-executor-127.0.0.1-98] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[98] message:[UNAVAILABLE: io exception] +2026-05-08 10:02:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:02:47 [snail-job-grpc-client-executor-127.0.0.1-100] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[100] message:[UNAVAILABLE: io exception] +2026-05-08 10:02:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:02:57 [snail-job-grpc-client-executor-127.0.0.1-101] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[101] message:[UNAVAILABLE: io exception] +2026-05-08 10:03:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:03:07 [snail-job-grpc-client-executor-127.0.0.1-102] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[102] message:[UNAVAILABLE: io exception] +2026-05-08 10:03:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:03:17 [snail-job-grpc-client-executor-127.0.0.1-103] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[103] message:[UNAVAILABLE: io exception] +2026-05-08 10:03:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:03:27 [snail-job-grpc-client-executor-127.0.0.1-104] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[104] message:[UNAVAILABLE: io exception] +2026-05-08 10:03:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:03:37 [snail-job-grpc-client-executor-127.0.0.1-105] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[105] message:[UNAVAILABLE: io exception] +2026-05-08 10:03:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:03:47 [snail-job-grpc-client-executor-127.0.0.1-107] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[107] message:[UNAVAILABLE: io exception] +2026-05-08 10:03:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:03:57 [snail-job-grpc-client-executor-127.0.0.1-108] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[108] message:[UNAVAILABLE: io exception] +2026-05-08 10:04:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:04:07 [snail-job-grpc-client-executor-127.0.0.1-109] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[109] message:[UNAVAILABLE: io exception] +2026-05-08 10:04:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:04:17 [snail-job-grpc-client-executor-127.0.0.1-110] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[110] message:[UNAVAILABLE: io exception] +2026-05-08 10:04:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:04:27 [snail-job-grpc-client-executor-127.0.0.1-111] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[111] message:[UNAVAILABLE: io exception] +2026-05-08 10:04:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:04:37 [snail-job-grpc-client-executor-127.0.0.1-112] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[112] message:[UNAVAILABLE: io exception] +2026-05-08 10:04:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:04:47 [snail-job-grpc-client-executor-127.0.0.1-113] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[114] message:[UNAVAILABLE: io exception] +2026-05-08 10:04:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:04:57 [snail-job-grpc-client-executor-127.0.0.1-115] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[115] message:[UNAVAILABLE: io exception] +2026-05-08 10:05:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:05:07 [snail-job-grpc-client-executor-127.0.0.1-116] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[116] message:[UNAVAILABLE: io exception] +2026-05-08 10:05:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:05:17 [snail-job-grpc-client-executor-127.0.0.1-117] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[117] message:[UNAVAILABLE: io exception] +2026-05-08 10:05:27 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:05:27 [snail-job-grpc-client-executor-127.0.0.1-118] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[118] message:[UNAVAILABLE: io exception] +2026-05-08 10:05:37 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:05:37 [snail-job-grpc-client-executor-127.0.0.1-119] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[119] message:[UNAVAILABLE: io exception] +2026-05-08 10:05:47 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:05:47 [snail-job-grpc-client-executor-127.0.0.1-120] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[120] message:[UNAVAILABLE: io exception] +2026-05-08 10:05:57 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:05:57 [snail-job-grpc-client-executor-127.0.0.1-122] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[122] message:[UNAVAILABLE: io exception] +2026-05-08 10:06:07 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:06:07 [snail-job-grpc-client-executor-127.0.0.1-123] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[123] message:[UNAVAILABLE: io exception] +2026-05-08 10:06:17 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:06:17 [Thread-5] INFO c.a.s.c.c.window.SlidingRingWindow - JVM is about to exit, emitting data in the Window +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO c.a.s.c.c.init.SnailJobCloseListener - snail-job client about to shutdown v1.9.0 +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO c.a.s.c.c.l.report.AbstractLogReport - AsyncReport Log about to shutdown +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO c.a.s.c.c.window.SlidingRingWindow - Sliding window is about to exit, emitting data in the Window +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO c.a.s.c.c.l.report.AbstractLogReport - AsyncReport Log has been shutdown +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO c.a.s.c.c.init.SnailJobCloseListener - snail-job client closed successfully v1.9.0 +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.23.Final +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO o.d.c.core.config.ThreadPoolConfig - ====关闭后台任务任务线程池==== +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing .... +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated... +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - master - Shutdown completed. +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - dynamic-datasource close the datasource named [master] success, +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye +2026-05-08 10:06:17 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet' +2026-05-08 10:06:23 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.3.Final +2026-05-08 10:06:23 [main] INFO org.dromara.DromaraApplication - Starting DromaraApplication using Java 17.0.17 with PID 35492 (D:\code\water\water-admin\target\classes started by admin in D:\code\water) +2026-05-08 10:06:23 [main] INFO org.dromara.DromaraApplication - The following 1 profile is active: "dev" +2026-05-08 10:06:26 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext +2026-05-08 10:06:27 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource detect P6SPY plugin and enabled it +2026-05-08 10:06:27 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Starting... +2026-05-08 10:06:27 [main] INFO com.zaxxer.hikari.pool.HikariPool - master - Added connection com.mysql.cj.jdbc.ConnectionImpl@1001b435 +2026-05-08 10:06:27 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Start completed. +2026-05-08 10:06:27 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success +2026-05-08 10:06:27 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +2026-05-08 10:06:28 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class org.dromara.app.domain.AppSchedulingDevice ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2026-05-08 10:06:28 [main] INFO o.d.common.redis.config.RedisConfig - 初始化 redis 配置 +2026-05-08 10:06:28 [main] INFO org.redisson.Version - Redisson 3.52.0 +2026-05-08 10:06:28 [redisson-netty-1-5] INFO o.r.connection.ConnectionsHolder - 1 connections initialized for localhost/127.0.0.1:6379 +2026-05-08 10:06:28 [redisson-netty-1-4] INFO o.r.connection.ConnectionsHolder - 8 connections initialized for localhost/127.0.0.1:6379 +2026-05-08 10:06:29 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 10:06:29 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 10:06:29 [main] INFO c.a.s.c.j.c.e.b.AbstractScriptExecutor$SnailFileUtils - [FileUtils] [workspace] use user.home as workspace: C:\Users\admin/snailJob/worker +2026-05-08 10:06:30 [main] INFO o.d.common.json.config.JacksonConfig - 初始化 jackson 配置 +2026-05-08 10:06:30 [main] INFO c.a.s.c.s.SnailJobClientJobCoreAutoConfiguration - Snail-Job 客户端IP为: 192.168.0.217 +2026-05-08 10:06:30 [main] INFO c.b.m.e.s.MybatisPlusApplicationContextAware - Register ApplicationContext instances org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@62e6a3ec +2026-05-08 10:06:34 [main] INFO o.d.w.p.modes.sb.config.BeanConfig - 【warm-flow】,加载完成 +2026-05-08 10:06:35 [main] INFO io.undertow - starting server: Undertow - 2.3.23.Final +2026-05-08 10:06:35 [main] INFO org.xnio - XNIO version 3.8.16.Final +2026-05-08 10:06:35 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.16.Final +2026-05-08 10:06:35 [main] INFO org.jboss.threads - JBoss Threads version 3.7.0.Final +2026-05-08 10:06:35 [main] INFO org.dromara.DromaraApplication - Started DromaraApplication in 13.494 seconds (process running for 14.288) +2026-05-08 10:06:35 [main] INFO o.d.c.sse.listener.SseTopicListener - 初始化SSE主题订阅监听器成功 +2026-05-08 10:06:35 [main] INFO c.a.s.c.c.init.SnailJobStartListener - snail-job client is preparing to start... v1.9.0 +2026-05-08 10:06:36 [main] INFO c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC client started connect to server +2026-05-08 10:06:36 [main] INFO c.a.s.c.c.rpc.server.SnailGrpcServer - ------> snail-job remoting server start success, grpc = com.aizuda.snailjob.client.common.rpc.server.SnailGrpcServer, port = 28081 +2026-05-08 10:06:36 [snail-job-grpc-client-executor-127.0.0.1-0] ERROR c.a.s.c.j.c.r.JobExecutorRegistrar - Job executors register error requestId:[0] message:[UNAVAILABLE: io exception] +2026-05-08 10:06:36 [main] INFO c.a.s.c.c.init.SnailJobStartListener - snail-job client started successfully v1.9.0 +2026-05-08 10:06:36 [snail-job-grpc-client-executor-127.0.0.1-2] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1] message:[UNAVAILABLE: io exception] +2026-05-08 10:06:36 [main] INFO o.d.s.runner.SystemApplicationRunner - 初始化OSS配置成功 +2026-05-08 10:06:37 [registrationTask1] WARN d.c.b.a.c.r.DefaultApplicationRegistrator - Failed to register application as Application(name=water-Vue-Plus, managementUrl=http://192.168.111.1:8081/actuator, healthUrl=http://192.168.111.1:8081/actuator/health, serviceUrl=http://192.168.111.1:8081/) at spring-boot-admin ([http://localhost:9090/admin/instances]): I/O error on POST request for "http://localhost:9090/admin/instances": null. Further attempts are logged on DEBUG level +org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://localhost:9090/admin/instances": null + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.createResourceAccessException(DefaultRestClient.java:704) + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.exchangeInternal(DefaultRestClient.java:589) + at org.springframework.web.client.DefaultRestClient$DefaultRequestBodyUriSpec.exchange(DefaultRestClient.java:540) + at org.springframework.web.client.RestClient$RequestHeadersSpec.exchange(RestClient.java:677) + at org.springframework.web.client.DefaultRestClient$DefaultResponseSpec.executeAndExtract(DefaultRestClient.java:821) + at org.springframework.web.client.DefaultRestClient$DefaultResponseSpec.body(DefaultRestClient.java:765) + at de.codecentric.boot.admin.client.registration.RestClientRegistrationClient.register(RestClientRegistrationClient.java:45) + at de.codecentric.boot.admin.client.registration.DefaultApplicationRegistrator.register(DefaultApplicationRegistrator.java:80) + at de.codecentric.boot.admin.client.registration.DefaultApplicationRegistrator.register(DefaultApplicationRegistrator.java:61) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.net.ConnectException + at java.net.http/jdk.internal.net.http.common.Utils.toConnectException(Utils.java:1107) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.connectAsync(PlainHttpConnection.java:203) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.checkRetryConnect(PlainHttpConnection.java:238) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$1(PlainHttpConnection.java:214) + at java.base/java.util.concurrent.CompletableFuture.uniHandle(CompletableFuture.java:934) + at java.base/java.util.concurrent.CompletableFuture$UniHandle.tryFire$$$capture(CompletableFuture.java:911) + at java.base/java.util.concurrent.CompletableFuture$UniHandle.tryFire(CompletableFuture.java) + at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run$$$capture(CompletableFuture.java:1773) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java) + ... 3 common frames omitted +Caused by: java.nio.channels.ClosedChannelException + at java.base/sun.nio.ch.SocketChannelImpl.ensureOpen(SocketChannelImpl.java:195) + at java.base/sun.nio.ch.SocketChannelImpl.beginConnect(SocketChannelImpl.java:760) + at java.base/sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:848) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$0(PlainHttpConnection.java:187) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:569) + at java.net.http/jdk.internal.net.http.PlainHttpConnection.connectAsync(PlainHttpConnection.java:189) + ... 11 common frames omitted +2026-05-08 10:06:37 [RMI TCP Connection(11)-192.168.111.1] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet' +2026-05-08 10:06:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:06:46 [snail-job-grpc-client-executor-127.0.0.1-3] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3] message:[UNAVAILABLE: io exception] +2026-05-08 10:06:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:06:56 [snail-job-grpc-client-executor-127.0.0.1-4] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[4] message:[UNAVAILABLE: io exception] +2026-05-08 10:07:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:07:06 [snail-job-grpc-client-executor-127.0.0.1-5] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[5] message:[UNAVAILABLE: io exception] +2026-05-08 10:07:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:07:16 [snail-job-grpc-client-executor-127.0.0.1-6] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[6] message:[UNAVAILABLE: io exception] +2026-05-08 10:07:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:07:26 [snail-job-grpc-client-executor-127.0.0.1-7] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[7] message:[UNAVAILABLE: io exception] +2026-05-08 10:07:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:07:36 [snail-job-grpc-client-executor-127.0.0.1-8] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[9] message:[UNAVAILABLE: io exception] +2026-05-08 10:07:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:07:46 [snail-job-grpc-client-executor-127.0.0.1-10] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[10] message:[UNAVAILABLE: io exception] +2026-05-08 10:07:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:07:56 [snail-job-grpc-client-executor-127.0.0.1-11] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[11] message:[UNAVAILABLE: io exception] +2026-05-08 10:08:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:08:06 [snail-job-grpc-client-executor-127.0.0.1-12] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[12] message:[UNAVAILABLE: io exception] +2026-05-08 10:08:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:08:16 [snail-job-grpc-client-executor-127.0.0.1-13] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[13] message:[UNAVAILABLE: io exception] +2026-05-08 10:08:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:08:26 [snail-job-grpc-client-executor-127.0.0.1-14] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[14] message:[UNAVAILABLE: io exception] +2026-05-08 10:08:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:08:36 [snail-job-grpc-client-executor-127.0.0.1-15] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[15] message:[UNAVAILABLE: io exception] +2026-05-08 10:08:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:08:46 [snail-job-grpc-client-executor-127.0.0.1-17] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[17] message:[UNAVAILABLE: io exception] +2026-05-08 10:08:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:08:56 [snail-job-grpc-client-executor-127.0.0.1-18] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[18] message:[UNAVAILABLE: io exception] +2026-05-08 10:09:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:09:06 [snail-job-grpc-client-executor-127.0.0.1-19] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[19] message:[UNAVAILABLE: io exception] +2026-05-08 10:09:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:09:16 [snail-job-grpc-client-executor-127.0.0.1-20] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[20] message:[UNAVAILABLE: io exception] +2026-05-08 10:09:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:09:26 [snail-job-grpc-client-executor-127.0.0.1-21] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[21] message:[UNAVAILABLE: io exception] +2026-05-08 10:09:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:09:36 [snail-job-grpc-client-executor-127.0.0.1-22] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[22] message:[UNAVAILABLE: io exception] +2026-05-08 10:09:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:09:46 [snail-job-grpc-client-executor-127.0.0.1-24] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[24] message:[UNAVAILABLE: io exception] +2026-05-08 10:09:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:09:56 [snail-job-grpc-client-executor-127.0.0.1-25] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[25] message:[UNAVAILABLE: io exception] +2026-05-08 10:10:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:10:06 [snail-job-grpc-client-executor-127.0.0.1-26] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[26] message:[UNAVAILABLE: io exception] +2026-05-08 10:10:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:10:16 [snail-job-grpc-client-executor-127.0.0.1-27] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[27] message:[UNAVAILABLE: io exception] +2026-05-08 10:10:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:10:26 [snail-job-grpc-client-executor-127.0.0.1-28] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[28] message:[UNAVAILABLE: io exception] +2026-05-08 10:10:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:10:36 [snail-job-grpc-client-executor-127.0.0.1-29] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[29] message:[UNAVAILABLE: io exception] +2026-05-08 10:10:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:10:46 [snail-job-grpc-client-executor-127.0.0.1-31] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[31] message:[UNAVAILABLE: io exception] +2026-05-08 10:10:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:10:56 [snail-job-grpc-client-executor-127.0.0.1-32] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[32] message:[UNAVAILABLE: io exception] +2026-05-08 10:11:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:11:06 [snail-job-grpc-client-executor-127.0.0.1-33] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[33] message:[UNAVAILABLE: io exception] +2026-05-08 10:11:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:11:16 [snail-job-grpc-client-executor-127.0.0.1-34] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[34] message:[UNAVAILABLE: io exception] +2026-05-08 10:11:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:11:26 [snail-job-grpc-client-executor-127.0.0.1-35] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[35] message:[UNAVAILABLE: io exception] +2026-05-08 10:11:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:11:36 [snail-job-grpc-client-executor-127.0.0.1-37] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[36] message:[UNAVAILABLE: io exception] +2026-05-08 10:11:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:11:46 [snail-job-grpc-client-executor-127.0.0.1-38] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[38] message:[UNAVAILABLE: io exception] +2026-05-08 10:11:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:11:56 [snail-job-grpc-client-executor-127.0.0.1-39] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[39] message:[UNAVAILABLE: io exception] +2026-05-08 10:12:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:12:06 [snail-job-grpc-client-executor-127.0.0.1-40] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[40] message:[UNAVAILABLE: io exception] +2026-05-08 10:12:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:12:16 [snail-job-grpc-client-executor-127.0.0.1-41] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[41] message:[UNAVAILABLE: io exception] +2026-05-08 10:12:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:12:26 [snail-job-grpc-client-executor-127.0.0.1-42] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[42] message:[UNAVAILABLE: io exception] +2026-05-08 10:12:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:12:36 [snail-job-grpc-client-executor-127.0.0.1-43] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[44] message:[UNAVAILABLE: io exception] +2026-05-08 10:12:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:12:46 [snail-job-grpc-client-executor-127.0.0.1-45] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[45] message:[UNAVAILABLE: io exception] +2026-05-08 10:12:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:12:56 [snail-job-grpc-client-executor-127.0.0.1-46] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[46] message:[UNAVAILABLE: io exception] +2026-05-08 10:13:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:13:06 [snail-job-grpc-client-executor-127.0.0.1-47] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[47] message:[UNAVAILABLE: io exception] +2026-05-08 10:13:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:13:16 [snail-job-grpc-client-executor-127.0.0.1-48] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[48] message:[UNAVAILABLE: io exception] +2026-05-08 10:13:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:13:26 [snail-job-grpc-client-executor-127.0.0.1-49] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[49] message:[UNAVAILABLE: io exception] +2026-05-08 10:13:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:13:36 [snail-job-grpc-client-executor-127.0.0.1-51] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[51] message:[UNAVAILABLE: io exception] +2026-05-08 10:13:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:13:46 [snail-job-grpc-client-executor-127.0.0.1-52] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[52] message:[UNAVAILABLE: io exception] +2026-05-08 10:13:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:13:56 [snail-job-grpc-client-executor-127.0.0.1-53] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[53] message:[UNAVAILABLE: io exception] +2026-05-08 10:14:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:14:06 [snail-job-grpc-client-executor-127.0.0.1-54] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[54] message:[UNAVAILABLE: io exception] +2026-05-08 10:14:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:14:16 [snail-job-grpc-client-executor-127.0.0.1-55] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[55] message:[UNAVAILABLE: io exception] +2026-05-08 10:14:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:14:26 [snail-job-grpc-client-executor-127.0.0.1-56] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[56] message:[UNAVAILABLE: io exception] +2026-05-08 10:14:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:14:36 [snail-job-grpc-client-executor-127.0.0.1-57] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[57] message:[UNAVAILABLE: io exception] +2026-05-08 10:14:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:14:46 [snail-job-grpc-client-executor-127.0.0.1-59] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[59] message:[UNAVAILABLE: io exception] +2026-05-08 10:14:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:14:56 [snail-job-grpc-client-executor-127.0.0.1-60] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[60] message:[UNAVAILABLE: io exception] +2026-05-08 10:15:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:15:06 [snail-job-grpc-client-executor-127.0.0.1-61] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[61] message:[UNAVAILABLE: io exception] +2026-05-08 10:15:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:15:16 [snail-job-grpc-client-executor-127.0.0.1-62] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[62] message:[UNAVAILABLE: io exception] +2026-05-08 10:15:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:15:26 [snail-job-grpc-client-executor-127.0.0.1-63] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[63] message:[UNAVAILABLE: io exception] +2026-05-08 10:15:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:15:36 [snail-job-grpc-client-executor-127.0.0.1-65] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[65] message:[UNAVAILABLE: io exception] +2026-05-08 10:15:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:15:46 [snail-job-grpc-client-executor-127.0.0.1-66] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[66] message:[UNAVAILABLE: io exception] +2026-05-08 10:15:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:15:56 [snail-job-grpc-client-executor-127.0.0.1-67] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[67] message:[UNAVAILABLE: io exception] +2026-05-08 10:16:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:16:06 [snail-job-grpc-client-executor-127.0.0.1-68] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[68] message:[UNAVAILABLE: io exception] +2026-05-08 10:16:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:16:16 [snail-job-grpc-client-executor-127.0.0.1-69] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[69] message:[UNAVAILABLE: io exception] +2026-05-08 10:16:23 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[GET /resource/code],参数类型[param],参数:[{"username":["40624989@qq.com"]}] +2026-05-08 10:16:23 [XNIO-1 task-2] INFO o.d.c.r.aspectj.RateLimiterAspect - 限制令牌 => 1, 剩余令牌 => 0, 缓存key => 'global:rate_limit:/resource/code:40624989@qq.com' +2026-05-08 10:16:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:16:26 [snail-job-grpc-client-executor-127.0.0.1-70] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[70] message:[UNAVAILABLE: io exception] +2026-05-08 10:16:33 [XNIO-1 task-2] ERROR o.d.web.controller.CaptchaController - 验证码短信发送异常 => AuthenticationFailedException: 535 Error: authentication failed + +2026-05-08 10:16:33 [XNIO-1 task-2] ERROR o.d.c.w.h.GlobalExceptionHandler - AuthenticationFailedException: 535 Error: authentication failed + +2026-05-08 10:16:33 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[GET /resource/code],耗时:[10586]毫秒 +2026-05-08 10:16:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:16:36 [snail-job-grpc-client-executor-127.0.0.1-72] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[71] message:[UNAVAILABLE: io exception] +2026-05-08 10:16:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:16:46 [snail-job-grpc-client-executor-127.0.0.1-73] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[73] message:[UNAVAILABLE: io exception] +2026-05-08 10:16:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:16:56 [snail-job-grpc-client-executor-127.0.0.1-74] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[74] message:[UNAVAILABLE: io exception] +2026-05-08 10:16:56 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[GET /resource/code],参数类型[param],参数:[{"username":["40624989@qq.com"]}] +2026-05-08 10:16:56 [XNIO-1 task-2] ERROR o.d.c.w.h.GlobalExceptionHandler - 访问过于频繁,请稍候再试 +2026-05-08 10:16:56 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[GET /resource/code],耗时:[12]毫秒 +2026-05-08 10:17:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:17:06 [snail-job-grpc-client-executor-127.0.0.1-75] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[75] message:[UNAVAILABLE: io exception] +2026-05-08 10:17:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:17:16 [snail-job-grpc-client-executor-127.0.0.1-76] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[76] message:[UNAVAILABLE: io exception] +2026-05-08 10:17:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:17:26 [snail-job-grpc-client-executor-127.0.0.1-77] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[77] message:[UNAVAILABLE: io exception] +2026-05-08 10:17:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:17:36 [snail-job-grpc-client-executor-127.0.0.1-78] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[78] message:[UNAVAILABLE: io exception] +2026-05-08 10:17:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:17:46 [snail-job-grpc-client-executor-127.0.0.1-80] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[80] message:[UNAVAILABLE: io exception] +2026-05-08 10:17:54 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[POST /app/v1/retrievePassword],参数类型[json],参数:[{"username":"40624989@qq.com","code":"053677"}] +2026-05-08 10:17:54 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[POST /app/v1/retrievePassword],耗时:[167]毫秒 +2026-05-08 10:17:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:17:56 [snail-job-grpc-client-executor-127.0.0.1-81] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[81] message:[UNAVAILABLE: io exception] +2026-05-08 10:18:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:18:06 [snail-job-grpc-client-executor-127.0.0.1-82] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[82] message:[UNAVAILABLE: io exception] +2026-05-08 10:18:13 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[GET /resource/code],参数类型[param],参数:[{"username":["40624989@qq.com"]}] +2026-05-08 10:18:13 [XNIO-1 task-2] INFO o.d.c.r.aspectj.RateLimiterAspect - 限制令牌 => 1, 剩余令牌 => 0, 缓存key => 'global:rate_limit:/resource/code:40624989@qq.com' +2026-05-08 10:18:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:18:16 [snail-job-grpc-client-executor-127.0.0.1-83] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[83] message:[UNAVAILABLE: io exception] +2026-05-08 10:18:23 [XNIO-1 task-2] ERROR o.d.web.controller.CaptchaController - 验证码短信发送异常 => AuthenticationFailedException: 535 Error: authentication failed + +2026-05-08 10:18:23 [XNIO-1 task-2] ERROR o.d.c.w.h.GlobalExceptionHandler - AuthenticationFailedException: 535 Error: authentication failed + +2026-05-08 10:18:23 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[GET /resource/code],耗时:[10106]毫秒 +2026-05-08 10:18:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:18:26 [snail-job-grpc-client-executor-127.0.0.1-84] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[84] message:[UNAVAILABLE: io exception] +2026-05-08 10:18:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:18:36 [snail-job-grpc-client-executor-127.0.0.1-86] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[85] message:[UNAVAILABLE: io exception] +2026-05-08 10:18:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:18:46 [snail-job-grpc-client-executor-127.0.0.1-87] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[87] message:[UNAVAILABLE: io exception] +2026-05-08 10:18:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:18:56 [snail-job-grpc-client-executor-127.0.0.1-88] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[88] message:[UNAVAILABLE: io exception] +2026-05-08 10:19:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:19:06 [snail-job-grpc-client-executor-127.0.0.1-89] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[89] message:[UNAVAILABLE: io exception] +2026-05-08 10:19:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:19:16 [snail-job-grpc-client-executor-127.0.0.1-90] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[90] message:[UNAVAILABLE: io exception] +2026-05-08 10:19:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:19:26 [snail-job-grpc-client-executor-127.0.0.1-91] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[91] message:[UNAVAILABLE: io exception] +2026-05-08 10:19:31 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[GET /resource/code],参数类型[param],参数:[{"username":["40624989@qq.com"]}] +2026-05-08 10:19:31 [XNIO-1 task-2] INFO o.d.c.r.aspectj.RateLimiterAspect - 限制令牌 => 1, 剩余令牌 => 0, 缓存key => 'global:rate_limit:/resource/code:40624989@qq.com' +2026-05-08 10:19:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:19:44 [snail-job-grpc-client-executor-127.0.0.1-92] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[93] message:[UNAVAILABLE: io exception] +2026-05-08 10:19:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:19:46 [snail-job-grpc-client-executor-127.0.0.1-94] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[94] message:[UNAVAILABLE: io exception] +2026-05-08 10:20:03 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:20:03 [snail-job-grpc-client-executor-127.0.0.1-95] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[95] message:[UNAVAILABLE: io exception] +2026-05-08 10:20:03 [XNIO-1 task-2] ERROR o.d.web.controller.CaptchaController - 验证码短信发送异常 => AuthenticationFailedException: 535 Error: authentication failed + +2026-05-08 10:20:03 [XNIO-1 task-2] ERROR o.d.c.w.h.GlobalExceptionHandler - AuthenticationFailedException: 535 Error: authentication failed + +2026-05-08 10:20:03 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[GET /resource/code],耗时:[32331]毫秒 +2026-05-08 10:20:06 [snail-job-grpc-client-executor-127.0.0.1-96] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[96] message:[UNAVAILABLE: io exception] +2026-05-08 10:20:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:20:16 [snail-job-grpc-client-executor-127.0.0.1-97] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[97] message:[UNAVAILABLE: io exception] +2026-05-08 10:20:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:20:26 [snail-job-grpc-client-executor-127.0.0.1-98] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[98] message:[UNAVAILABLE: io exception] +2026-05-08 10:20:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:20:36 [snail-job-grpc-client-executor-127.0.0.1-100] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[100] message:[UNAVAILABLE: io exception] +2026-05-08 10:20:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:20:46 [snail-job-grpc-client-executor-127.0.0.1-101] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[101] message:[UNAVAILABLE: io exception] +2026-05-08 10:20:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:20:56 [snail-job-grpc-client-executor-127.0.0.1-102] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[102] message:[UNAVAILABLE: io exception] +2026-05-08 10:21:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:21:06 [snail-job-grpc-client-executor-127.0.0.1-103] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[103] message:[UNAVAILABLE: io exception] +2026-05-08 10:21:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:21:16 [snail-job-grpc-client-executor-127.0.0.1-104] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[104] message:[UNAVAILABLE: io exception] +2026-05-08 10:21:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:21:26 [snail-job-grpc-client-executor-127.0.0.1-105] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[105] message:[UNAVAILABLE: io exception] +2026-05-08 10:21:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:21:36 [snail-job-grpc-client-executor-127.0.0.1-107] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[107] message:[UNAVAILABLE: io exception] +2026-05-08 10:21:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:21:46 [snail-job-grpc-client-executor-127.0.0.1-108] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[108] message:[UNAVAILABLE: io exception] +2026-05-08 10:21:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:21:56 [snail-job-grpc-client-executor-127.0.0.1-109] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[109] message:[UNAVAILABLE: io exception] +2026-05-08 10:22:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:22:06 [snail-job-grpc-client-executor-127.0.0.1-110] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[110] message:[UNAVAILABLE: io exception] +2026-05-08 10:22:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:22:16 [snail-job-grpc-client-executor-127.0.0.1-111] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[111] message:[UNAVAILABLE: io exception] +2026-05-08 10:22:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:22:26 [snail-job-grpc-client-executor-127.0.0.1-112] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[112] message:[UNAVAILABLE: io exception] +2026-05-08 10:22:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:22:36 [snail-job-grpc-client-executor-127.0.0.1-114] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[114] message:[UNAVAILABLE: io exception] +2026-05-08 10:22:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:22:46 [snail-job-grpc-client-executor-127.0.0.1-115] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[115] message:[UNAVAILABLE: io exception] +2026-05-08 10:22:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:22:56 [snail-job-grpc-client-executor-127.0.0.1-116] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[116] message:[UNAVAILABLE: io exception] +2026-05-08 10:23:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:23:06 [snail-job-grpc-client-executor-127.0.0.1-117] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[117] message:[UNAVAILABLE: io exception] +2026-05-08 10:23:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:23:16 [snail-job-grpc-client-executor-127.0.0.1-118] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[118] message:[UNAVAILABLE: io exception] +2026-05-08 10:23:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:23:26 [snail-job-grpc-client-executor-127.0.0.1-119] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[119] message:[UNAVAILABLE: io exception] +2026-05-08 10:23:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:23:36 [snail-job-grpc-client-executor-127.0.0.1-120] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[121] message:[UNAVAILABLE: io exception] +2026-05-08 10:23:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:23:46 [snail-job-grpc-client-executor-127.0.0.1-122] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[122] message:[UNAVAILABLE: io exception] +2026-05-08 10:23:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:23:56 [snail-job-grpc-client-executor-127.0.0.1-123] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[123] message:[UNAVAILABLE: io exception] +2026-05-08 10:24:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:24:06 [snail-job-grpc-client-executor-127.0.0.1-124] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[124] message:[UNAVAILABLE: io exception] +2026-05-08 10:24:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:24:16 [snail-job-grpc-client-executor-127.0.0.1-125] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[125] message:[UNAVAILABLE: io exception] +2026-05-08 10:24:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:24:26 [snail-job-grpc-client-executor-127.0.0.1-126] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[126] message:[UNAVAILABLE: io exception] +2026-05-08 10:24:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:24:36 [snail-job-grpc-client-executor-127.0.0.1-127] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[128] message:[UNAVAILABLE: io exception] +2026-05-08 10:24:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:24:46 [snail-job-grpc-client-executor-127.0.0.1-129] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[129] message:[UNAVAILABLE: io exception] +2026-05-08 10:24:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:24:56 [snail-job-grpc-client-executor-127.0.0.1-130] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[130] message:[UNAVAILABLE: io exception] +2026-05-08 10:25:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:25:06 [snail-job-grpc-client-executor-127.0.0.1-131] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[131] message:[UNAVAILABLE: io exception] +2026-05-08 10:25:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:25:16 [snail-job-grpc-client-executor-127.0.0.1-132] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[132] message:[UNAVAILABLE: io exception] +2026-05-08 10:25:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:25:26 [snail-job-grpc-client-executor-127.0.0.1-133] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[133] message:[UNAVAILABLE: io exception] +2026-05-08 10:25:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:25:36 [snail-job-grpc-client-executor-127.0.0.1-134] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[135] message:[UNAVAILABLE: io exception] +2026-05-08 10:25:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:25:46 [snail-job-grpc-client-executor-127.0.0.1-136] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[136] message:[UNAVAILABLE: io exception] +2026-05-08 10:25:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:25:56 [snail-job-grpc-client-executor-127.0.0.1-137] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[137] message:[UNAVAILABLE: io exception] +2026-05-08 10:26:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:26:06 [snail-job-grpc-client-executor-127.0.0.1-138] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[138] message:[UNAVAILABLE: io exception] +2026-05-08 10:26:10 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]开始请求 => URL[GET /resource/code],参数类型[param],参数:[{"username":["40624989@qq.com"]}] +2026-05-08 10:26:10 [XNIO-1 task-2] INFO o.d.c.r.aspectj.RateLimiterAspect - 限制令牌 => 1, 剩余令牌 => 0, 缓存key => 'global:rate_limit:/resource/code:40624989@qq.com' +2026-05-08 10:26:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:26:16 [snail-job-grpc-client-executor-127.0.0.1-139] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[139] message:[UNAVAILABLE: io exception] +2026-05-08 10:26:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:26:26 [XNIO-1 task-2] INFO o.d.c.w.i.PlusWebInvokeTimeInterceptor - [PLUS]结束请求 => URL[GET /resource/code],耗时:[16258]毫秒 +2026-05-08 10:26:26 [snail-job-grpc-client-executor-127.0.0.1-140] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[140] message:[UNAVAILABLE: io exception] +2026-05-08 10:26:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:26:36 [snail-job-grpc-client-executor-127.0.0.1-142] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[142] message:[UNAVAILABLE: io exception] +2026-05-08 10:26:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:26:46 [snail-job-grpc-client-executor-127.0.0.1-143] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[143] message:[UNAVAILABLE: io exception] +2026-05-08 10:26:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:26:56 [snail-job-grpc-client-executor-127.0.0.1-144] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[144] message:[UNAVAILABLE: io exception] +2026-05-08 10:27:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:27:06 [snail-job-grpc-client-executor-127.0.0.1-145] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[145] message:[UNAVAILABLE: io exception] +2026-05-08 10:27:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:27:16 [snail-job-grpc-client-executor-127.0.0.1-146] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[146] message:[UNAVAILABLE: io exception] +2026-05-08 10:27:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:27:26 [snail-job-grpc-client-executor-127.0.0.1-147] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[147] message:[UNAVAILABLE: io exception] +2026-05-08 10:27:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:27:36 [snail-job-grpc-client-executor-127.0.0.1-148] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[148] message:[UNAVAILABLE: io exception] +2026-05-08 10:27:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:27:46 [snail-job-grpc-client-executor-127.0.0.1-150] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[150] message:[UNAVAILABLE: io exception] +2026-05-08 10:27:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:27:56 [snail-job-grpc-client-executor-127.0.0.1-151] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[151] message:[UNAVAILABLE: io exception] +2026-05-08 10:28:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:28:06 [snail-job-grpc-client-executor-127.0.0.1-152] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[152] message:[UNAVAILABLE: io exception] +2026-05-08 10:28:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:28:16 [snail-job-grpc-client-executor-127.0.0.1-153] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[153] message:[UNAVAILABLE: io exception] +2026-05-08 10:28:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:28:26 [snail-job-grpc-client-executor-127.0.0.1-154] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[154] message:[UNAVAILABLE: io exception] +2026-05-08 10:28:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:28:36 [snail-job-grpc-client-executor-127.0.0.1-155] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[155] message:[UNAVAILABLE: io exception] +2026-05-08 10:28:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:28:46 [snail-job-grpc-client-executor-127.0.0.1-157] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[157] message:[UNAVAILABLE: io exception] +2026-05-08 10:28:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:28:56 [snail-job-grpc-client-executor-127.0.0.1-158] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[158] message:[UNAVAILABLE: io exception] +2026-05-08 10:29:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:29:06 [snail-job-grpc-client-executor-127.0.0.1-159] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[159] message:[UNAVAILABLE: io exception] +2026-05-08 10:29:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:29:16 [snail-job-grpc-client-executor-127.0.0.1-160] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[160] message:[UNAVAILABLE: io exception] +2026-05-08 10:29:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:29:26 [snail-job-grpc-client-executor-127.0.0.1-161] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[161] message:[UNAVAILABLE: io exception] +2026-05-08 10:29:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:29:36 [snail-job-grpc-client-executor-127.0.0.1-163] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[162] message:[UNAVAILABLE: io exception] +2026-05-08 10:29:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:29:46 [snail-job-grpc-client-executor-127.0.0.1-164] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[164] message:[UNAVAILABLE: io exception] +2026-05-08 10:29:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:29:56 [snail-job-grpc-client-executor-127.0.0.1-165] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[165] message:[UNAVAILABLE: io exception] +2026-05-08 10:30:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:30:06 [snail-job-grpc-client-executor-127.0.0.1-166] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[166] message:[UNAVAILABLE: io exception] +2026-05-08 10:30:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:30:16 [snail-job-grpc-client-executor-127.0.0.1-167] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[167] message:[UNAVAILABLE: io exception] +2026-05-08 10:30:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:30:26 [snail-job-grpc-client-executor-127.0.0.1-168] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[168] message:[UNAVAILABLE: io exception] +2026-05-08 10:30:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:30:36 [snail-job-grpc-client-executor-127.0.0.1-169] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[169] message:[UNAVAILABLE: io exception] +2026-05-08 10:30:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:30:46 [snail-job-grpc-client-executor-127.0.0.1-171] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[171] message:[UNAVAILABLE: io exception] +2026-05-08 10:30:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:30:56 [snail-job-grpc-client-executor-127.0.0.1-172] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[172] message:[UNAVAILABLE: io exception] +2026-05-08 10:31:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:31:06 [snail-job-grpc-client-executor-127.0.0.1-173] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[173] message:[UNAVAILABLE: io exception] +2026-05-08 10:31:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:31:16 [snail-job-grpc-client-executor-127.0.0.1-174] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[174] message:[UNAVAILABLE: io exception] +2026-05-08 10:31:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:31:26 [snail-job-grpc-client-executor-127.0.0.1-175] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[175] message:[UNAVAILABLE: io exception] +2026-05-08 10:31:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:31:36 [snail-job-grpc-client-executor-127.0.0.1-177] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[176] message:[UNAVAILABLE: io exception] +2026-05-08 10:31:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:31:46 [snail-job-grpc-client-executor-127.0.0.1-178] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[178] message:[UNAVAILABLE: io exception] +2026-05-08 10:31:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:31:56 [snail-job-grpc-client-executor-127.0.0.1-179] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[179] message:[UNAVAILABLE: io exception] +2026-05-08 10:32:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:32:06 [snail-job-grpc-client-executor-127.0.0.1-180] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[180] message:[UNAVAILABLE: io exception] +2026-05-08 10:32:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:32:16 [snail-job-grpc-client-executor-127.0.0.1-181] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[181] message:[UNAVAILABLE: io exception] +2026-05-08 10:32:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:32:26 [snail-job-grpc-client-executor-127.0.0.1-182] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[182] message:[UNAVAILABLE: io exception] +2026-05-08 10:32:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:32:36 [snail-job-grpc-client-executor-127.0.0.1-183] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[184] message:[UNAVAILABLE: io exception] +2026-05-08 10:32:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:32:46 [snail-job-grpc-client-executor-127.0.0.1-185] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[185] message:[UNAVAILABLE: io exception] +2026-05-08 10:32:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:32:56 [snail-job-grpc-client-executor-127.0.0.1-186] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[186] message:[UNAVAILABLE: io exception] +2026-05-08 10:33:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:33:06 [snail-job-grpc-client-executor-127.0.0.1-187] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[187] message:[UNAVAILABLE: io exception] +2026-05-08 10:33:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:33:16 [snail-job-grpc-client-executor-127.0.0.1-188] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[188] message:[UNAVAILABLE: io exception] +2026-05-08 10:33:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:33:26 [snail-job-grpc-client-executor-127.0.0.1-189] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[189] message:[UNAVAILABLE: io exception] +2026-05-08 10:33:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:33:36 [snail-job-grpc-client-executor-127.0.0.1-190] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[191] message:[UNAVAILABLE: io exception] +2026-05-08 10:33:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:33:46 [snail-job-grpc-client-executor-127.0.0.1-192] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[192] message:[UNAVAILABLE: io exception] +2026-05-08 10:33:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:33:56 [snail-job-grpc-client-executor-127.0.0.1-193] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[193] message:[UNAVAILABLE: io exception] +2026-05-08 10:34:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:34:06 [snail-job-grpc-client-executor-127.0.0.1-194] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[194] message:[UNAVAILABLE: io exception] +2026-05-08 10:34:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:34:16 [snail-job-grpc-client-executor-127.0.0.1-195] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[195] message:[UNAVAILABLE: io exception] +2026-05-08 10:34:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:34:26 [snail-job-grpc-client-executor-127.0.0.1-196] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[196] message:[UNAVAILABLE: io exception] +2026-05-08 10:34:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:34:36 [snail-job-grpc-client-executor-127.0.0.1-197] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[197] message:[UNAVAILABLE: io exception] +2026-05-08 10:34:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:34:46 [snail-job-grpc-client-executor-127.0.0.1-199] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[199] message:[UNAVAILABLE: io exception] +2026-05-08 10:34:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:34:56 [snail-job-grpc-client-executor-127.0.0.1-200] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[200] message:[UNAVAILABLE: io exception] +2026-05-08 10:35:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:35:06 [snail-job-grpc-client-executor-127.0.0.1-201] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[201] message:[UNAVAILABLE: io exception] +2026-05-08 10:35:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:35:16 [snail-job-grpc-client-executor-127.0.0.1-202] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[202] message:[UNAVAILABLE: io exception] +2026-05-08 10:35:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:35:26 [snail-job-grpc-client-executor-127.0.0.1-203] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[203] message:[UNAVAILABLE: io exception] +2026-05-08 10:35:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:35:36 [snail-job-grpc-client-executor-127.0.0.1-204] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[204] message:[UNAVAILABLE: io exception] +2026-05-08 10:35:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:35:46 [snail-job-grpc-client-executor-127.0.0.1-206] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[206] message:[UNAVAILABLE: io exception] +2026-05-08 10:35:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:35:56 [snail-job-grpc-client-executor-127.0.0.1-207] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[207] message:[UNAVAILABLE: io exception] +2026-05-08 10:36:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:36:06 [snail-job-grpc-client-executor-127.0.0.1-208] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[208] message:[UNAVAILABLE: io exception] +2026-05-08 10:36:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:36:16 [snail-job-grpc-client-executor-127.0.0.1-209] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[209] message:[UNAVAILABLE: io exception] +2026-05-08 10:36:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:36:26 [snail-job-grpc-client-executor-127.0.0.1-210] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[210] message:[UNAVAILABLE: io exception] +2026-05-08 10:36:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:36:36 [snail-job-grpc-client-executor-127.0.0.1-212] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[212] message:[UNAVAILABLE: io exception] +2026-05-08 10:36:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:36:46 [snail-job-grpc-client-executor-127.0.0.1-213] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[213] message:[UNAVAILABLE: io exception] +2026-05-08 10:36:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:36:56 [snail-job-grpc-client-executor-127.0.0.1-214] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[214] message:[UNAVAILABLE: io exception] +2026-05-08 10:37:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:37:06 [snail-job-grpc-client-executor-127.0.0.1-215] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[215] message:[UNAVAILABLE: io exception] +2026-05-08 10:37:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:37:16 [snail-job-grpc-client-executor-127.0.0.1-216] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[216] message:[UNAVAILABLE: io exception] +2026-05-08 10:37:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:37:26 [snail-job-grpc-client-executor-127.0.0.1-217] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[217] message:[UNAVAILABLE: io exception] +2026-05-08 10:37:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:37:36 [snail-job-grpc-client-executor-127.0.0.1-218] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[219] message:[UNAVAILABLE: io exception] +2026-05-08 10:37:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:37:46 [snail-job-grpc-client-executor-127.0.0.1-220] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[220] message:[UNAVAILABLE: io exception] +2026-05-08 10:37:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:37:56 [snail-job-grpc-client-executor-127.0.0.1-221] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[221] message:[UNAVAILABLE: io exception] +2026-05-08 10:38:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:38:06 [snail-job-grpc-client-executor-127.0.0.1-222] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[222] message:[UNAVAILABLE: io exception] +2026-05-08 10:38:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:38:16 [snail-job-grpc-client-executor-127.0.0.1-223] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[223] message:[UNAVAILABLE: io exception] +2026-05-08 10:38:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:38:26 [snail-job-grpc-client-executor-127.0.0.1-224] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[224] message:[UNAVAILABLE: io exception] +2026-05-08 10:38:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:38:36 [snail-job-grpc-client-executor-127.0.0.1-226] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[226] message:[UNAVAILABLE: io exception] +2026-05-08 10:38:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:38:46 [snail-job-grpc-client-executor-127.0.0.1-227] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[227] message:[UNAVAILABLE: io exception] +2026-05-08 10:38:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:38:56 [snail-job-grpc-client-executor-127.0.0.1-228] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[228] message:[UNAVAILABLE: io exception] +2026-05-08 10:39:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:39:06 [snail-job-grpc-client-executor-127.0.0.1-229] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[229] message:[UNAVAILABLE: io exception] +2026-05-08 10:39:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:39:16 [snail-job-grpc-client-executor-127.0.0.1-230] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[230] message:[UNAVAILABLE: io exception] +2026-05-08 10:39:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:39:26 [snail-job-grpc-client-executor-127.0.0.1-231] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[231] message:[UNAVAILABLE: io exception] +2026-05-08 10:39:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:39:36 [snail-job-grpc-client-executor-127.0.0.1-232] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[233] message:[UNAVAILABLE: io exception] +2026-05-08 10:39:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:39:46 [snail-job-grpc-client-executor-127.0.0.1-234] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[234] message:[UNAVAILABLE: io exception] +2026-05-08 10:39:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:39:56 [snail-job-grpc-client-executor-127.0.0.1-235] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[235] message:[UNAVAILABLE: io exception] +2026-05-08 10:40:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:40:06 [snail-job-grpc-client-executor-127.0.0.1-236] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[236] message:[UNAVAILABLE: io exception] +2026-05-08 10:40:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:40:16 [snail-job-grpc-client-executor-127.0.0.1-237] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[237] message:[UNAVAILABLE: io exception] +2026-05-08 10:40:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:40:26 [snail-job-grpc-client-executor-127.0.0.1-238] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[238] message:[UNAVAILABLE: io exception] +2026-05-08 10:40:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:40:36 [snail-job-grpc-client-executor-127.0.0.1-240] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[240] message:[UNAVAILABLE: io exception] +2026-05-08 10:40:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:40:46 [snail-job-grpc-client-executor-127.0.0.1-241] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[241] message:[UNAVAILABLE: io exception] +2026-05-08 10:40:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:40:56 [snail-job-grpc-client-executor-127.0.0.1-242] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[242] message:[UNAVAILABLE: io exception] +2026-05-08 10:41:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:41:06 [snail-job-grpc-client-executor-127.0.0.1-243] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[243] message:[UNAVAILABLE: io exception] +2026-05-08 10:41:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:41:16 [snail-job-grpc-client-executor-127.0.0.1-244] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[244] message:[UNAVAILABLE: io exception] +2026-05-08 10:41:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:41:26 [snail-job-grpc-client-executor-127.0.0.1-245] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[245] message:[UNAVAILABLE: io exception] +2026-05-08 10:41:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:41:36 [snail-job-grpc-client-executor-127.0.0.1-246] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[247] message:[UNAVAILABLE: io exception] +2026-05-08 10:41:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:41:46 [snail-job-grpc-client-executor-127.0.0.1-248] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[248] message:[UNAVAILABLE: io exception] +2026-05-08 10:41:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:41:56 [snail-job-grpc-client-executor-127.0.0.1-249] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[249] message:[UNAVAILABLE: io exception] +2026-05-08 10:42:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:42:06 [snail-job-grpc-client-executor-127.0.0.1-250] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[250] message:[UNAVAILABLE: io exception] +2026-05-08 10:42:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:42:16 [snail-job-grpc-client-executor-127.0.0.1-251] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[251] message:[UNAVAILABLE: io exception] +2026-05-08 10:42:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:42:26 [snail-job-grpc-client-executor-127.0.0.1-252] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[252] message:[UNAVAILABLE: io exception] +2026-05-08 10:42:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:42:36 [snail-job-grpc-client-executor-127.0.0.1-253] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[253] message:[UNAVAILABLE: io exception] +2026-05-08 10:42:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:42:46 [snail-job-grpc-client-executor-127.0.0.1-255] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[255] message:[UNAVAILABLE: io exception] +2026-05-08 10:42:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:42:56 [snail-job-grpc-client-executor-127.0.0.1-256] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[256] message:[UNAVAILABLE: io exception] +2026-05-08 10:43:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:43:06 [snail-job-grpc-client-executor-127.0.0.1-257] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[257] message:[UNAVAILABLE: io exception] +2026-05-08 10:43:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:43:16 [snail-job-grpc-client-executor-127.0.0.1-258] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[258] message:[UNAVAILABLE: io exception] +2026-05-08 10:43:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:43:26 [snail-job-grpc-client-executor-127.0.0.1-259] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[259] message:[UNAVAILABLE: io exception] +2026-05-08 10:43:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:43:36 [snail-job-grpc-client-executor-127.0.0.1-261] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[261] message:[UNAVAILABLE: io exception] +2026-05-08 10:43:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:43:46 [snail-job-grpc-client-executor-127.0.0.1-262] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[262] message:[UNAVAILABLE: io exception] +2026-05-08 10:43:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:43:56 [snail-job-grpc-client-executor-127.0.0.1-263] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[263] message:[UNAVAILABLE: io exception] +2026-05-08 10:44:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:44:06 [snail-job-grpc-client-executor-127.0.0.1-264] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[264] message:[UNAVAILABLE: io exception] +2026-05-08 10:44:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:44:16 [snail-job-grpc-client-executor-127.0.0.1-265] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[265] message:[UNAVAILABLE: io exception] +2026-05-08 10:44:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:44:26 [snail-job-grpc-client-executor-127.0.0.1-266] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[266] message:[UNAVAILABLE: io exception] +2026-05-08 10:44:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:44:36 [snail-job-grpc-client-executor-127.0.0.1-268] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[268] message:[UNAVAILABLE: io exception] +2026-05-08 10:44:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:44:46 [snail-job-grpc-client-executor-127.0.0.1-269] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[269] message:[UNAVAILABLE: io exception] +2026-05-08 10:44:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:44:56 [snail-job-grpc-client-executor-127.0.0.1-270] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[270] message:[UNAVAILABLE: io exception] +2026-05-08 10:45:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:45:06 [snail-job-grpc-client-executor-127.0.0.1-271] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[271] message:[UNAVAILABLE: io exception] +2026-05-08 10:45:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:45:16 [snail-job-grpc-client-executor-127.0.0.1-272] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[272] message:[UNAVAILABLE: io exception] +2026-05-08 10:45:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:45:26 [snail-job-grpc-client-executor-127.0.0.1-273] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[273] message:[UNAVAILABLE: io exception] +2026-05-08 10:45:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:45:36 [snail-job-grpc-client-executor-127.0.0.1-275] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[274] message:[UNAVAILABLE: io exception] +2026-05-08 10:45:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:45:46 [snail-job-grpc-client-executor-127.0.0.1-276] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[276] message:[UNAVAILABLE: io exception] +2026-05-08 10:45:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:45:56 [snail-job-grpc-client-executor-127.0.0.1-277] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[277] message:[UNAVAILABLE: io exception] +2026-05-08 10:46:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:46:06 [snail-job-grpc-client-executor-127.0.0.1-278] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[278] message:[UNAVAILABLE: io exception] +2026-05-08 10:46:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:46:16 [snail-job-grpc-client-executor-127.0.0.1-279] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[279] message:[UNAVAILABLE: io exception] +2026-05-08 10:46:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:46:26 [snail-job-grpc-client-executor-127.0.0.1-280] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[280] message:[UNAVAILABLE: io exception] +2026-05-08 10:46:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:46:36 [snail-job-grpc-client-executor-127.0.0.1-282] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[282] message:[UNAVAILABLE: io exception] +2026-05-08 10:46:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:46:46 [snail-job-grpc-client-executor-127.0.0.1-283] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[283] message:[UNAVAILABLE: io exception] +2026-05-08 10:46:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:46:56 [snail-job-grpc-client-executor-127.0.0.1-284] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[284] message:[UNAVAILABLE: io exception] +2026-05-08 10:47:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:47:06 [snail-job-grpc-client-executor-127.0.0.1-285] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[285] message:[UNAVAILABLE: io exception] +2026-05-08 10:47:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:47:16 [snail-job-grpc-client-executor-127.0.0.1-286] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[286] message:[UNAVAILABLE: io exception] +2026-05-08 10:47:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:47:26 [snail-job-grpc-client-executor-127.0.0.1-287] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[287] message:[UNAVAILABLE: io exception] +2026-05-08 10:47:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:47:36 [snail-job-grpc-client-executor-127.0.0.1-289] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[289] message:[UNAVAILABLE: io exception] +2026-05-08 10:47:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:47:46 [snail-job-grpc-client-executor-127.0.0.1-290] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[290] message:[UNAVAILABLE: io exception] +2026-05-08 10:47:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:47:56 [snail-job-grpc-client-executor-127.0.0.1-291] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[291] message:[UNAVAILABLE: io exception] +2026-05-08 10:48:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:48:06 [snail-job-grpc-client-executor-127.0.0.1-292] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[292] message:[UNAVAILABLE: io exception] +2026-05-08 10:48:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:48:16 [snail-job-grpc-client-executor-127.0.0.1-293] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[293] message:[UNAVAILABLE: io exception] +2026-05-08 10:48:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:48:26 [snail-job-grpc-client-executor-127.0.0.1-294] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[294] message:[UNAVAILABLE: io exception] +2026-05-08 10:48:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:48:36 [snail-job-grpc-client-executor-127.0.0.1-295] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[296] message:[UNAVAILABLE: io exception] +2026-05-08 10:48:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:48:46 [snail-job-grpc-client-executor-127.0.0.1-297] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[297] message:[UNAVAILABLE: io exception] +2026-05-08 10:48:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:48:56 [snail-job-grpc-client-executor-127.0.0.1-298] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[298] message:[UNAVAILABLE: io exception] +2026-05-08 10:49:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:49:06 [snail-job-grpc-client-executor-127.0.0.1-299] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[299] message:[UNAVAILABLE: io exception] +2026-05-08 10:49:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:49:16 [snail-job-grpc-client-executor-127.0.0.1-300] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[300] message:[UNAVAILABLE: io exception] +2026-05-08 10:49:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:49:26 [snail-job-grpc-client-executor-127.0.0.1-301] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[301] message:[UNAVAILABLE: io exception] +2026-05-08 10:49:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:49:36 [snail-job-grpc-client-executor-127.0.0.1-302] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[303] message:[UNAVAILABLE: io exception] +2026-05-08 10:49:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:49:46 [snail-job-grpc-client-executor-127.0.0.1-304] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[304] message:[UNAVAILABLE: io exception] +2026-05-08 10:49:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:49:56 [snail-job-grpc-client-executor-127.0.0.1-305] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[305] message:[UNAVAILABLE: io exception] +2026-05-08 10:50:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:50:06 [snail-job-grpc-client-executor-127.0.0.1-306] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[306] message:[UNAVAILABLE: io exception] +2026-05-08 10:50:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:50:16 [snail-job-grpc-client-executor-127.0.0.1-307] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[307] message:[UNAVAILABLE: io exception] +2026-05-08 10:50:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:50:26 [snail-job-grpc-client-executor-127.0.0.1-308] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[308] message:[UNAVAILABLE: io exception] +2026-05-08 10:50:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:50:36 [snail-job-grpc-client-executor-127.0.0.1-310] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[309] message:[UNAVAILABLE: io exception] +2026-05-08 10:50:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:50:46 [snail-job-grpc-client-executor-127.0.0.1-311] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[311] message:[UNAVAILABLE: io exception] +2026-05-08 10:50:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:50:56 [snail-job-grpc-client-executor-127.0.0.1-312] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[312] message:[UNAVAILABLE: io exception] +2026-05-08 10:51:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:51:06 [snail-job-grpc-client-executor-127.0.0.1-313] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[313] message:[UNAVAILABLE: io exception] +2026-05-08 10:51:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:51:16 [snail-job-grpc-client-executor-127.0.0.1-314] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[314] message:[UNAVAILABLE: io exception] +2026-05-08 10:51:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:51:26 [snail-job-grpc-client-executor-127.0.0.1-315] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[315] message:[UNAVAILABLE: io exception] +2026-05-08 10:51:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:51:36 [snail-job-grpc-client-executor-127.0.0.1-317] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[316] message:[UNAVAILABLE: io exception] +2026-05-08 10:51:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:51:46 [snail-job-grpc-client-executor-127.0.0.1-318] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[318] message:[UNAVAILABLE: io exception] +2026-05-08 10:51:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:51:56 [snail-job-grpc-client-executor-127.0.0.1-319] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[319] message:[UNAVAILABLE: io exception] +2026-05-08 10:52:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:52:06 [snail-job-grpc-client-executor-127.0.0.1-320] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[320] message:[UNAVAILABLE: io exception] +2026-05-08 10:52:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:52:16 [snail-job-grpc-client-executor-127.0.0.1-321] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[321] message:[UNAVAILABLE: io exception] +2026-05-08 10:52:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:52:26 [snail-job-grpc-client-executor-127.0.0.1-322] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[322] message:[UNAVAILABLE: io exception] +2026-05-08 10:52:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:52:36 [snail-job-grpc-client-executor-127.0.0.1-323] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[323] message:[UNAVAILABLE: io exception] +2026-05-08 10:52:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:52:46 [snail-job-grpc-client-executor-127.0.0.1-325] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[325] message:[UNAVAILABLE: io exception] +2026-05-08 10:52:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:52:56 [snail-job-grpc-client-executor-127.0.0.1-326] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[326] message:[UNAVAILABLE: io exception] +2026-05-08 10:53:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:53:06 [snail-job-grpc-client-executor-127.0.0.1-327] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[327] message:[UNAVAILABLE: io exception] +2026-05-08 10:53:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:53:16 [snail-job-grpc-client-executor-127.0.0.1-328] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[328] message:[UNAVAILABLE: io exception] +2026-05-08 10:53:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:53:26 [snail-job-grpc-client-executor-127.0.0.1-329] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[329] message:[UNAVAILABLE: io exception] +2026-05-08 10:53:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:53:36 [snail-job-grpc-client-executor-127.0.0.1-330] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[330] message:[UNAVAILABLE: io exception] +2026-05-08 10:53:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:53:46 [snail-job-grpc-client-executor-127.0.0.1-332] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[332] message:[UNAVAILABLE: io exception] +2026-05-08 10:53:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:53:56 [snail-job-grpc-client-executor-127.0.0.1-333] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[333] message:[UNAVAILABLE: io exception] +2026-05-08 10:54:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:54:06 [snail-job-grpc-client-executor-127.0.0.1-334] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[334] message:[UNAVAILABLE: io exception] +2026-05-08 10:54:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:54:16 [snail-job-grpc-client-executor-127.0.0.1-335] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[335] message:[UNAVAILABLE: io exception] +2026-05-08 10:54:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:54:26 [snail-job-grpc-client-executor-127.0.0.1-336] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[336] message:[UNAVAILABLE: io exception] +2026-05-08 10:54:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:54:36 [snail-job-grpc-client-executor-127.0.0.1-338] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[337] message:[UNAVAILABLE: io exception] +2026-05-08 10:54:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:54:46 [snail-job-grpc-client-executor-127.0.0.1-339] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[339] message:[UNAVAILABLE: io exception] +2026-05-08 10:54:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:54:56 [snail-job-grpc-client-executor-127.0.0.1-340] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[340] message:[UNAVAILABLE: io exception] +2026-05-08 10:55:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:55:06 [snail-job-grpc-client-executor-127.0.0.1-341] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[341] message:[UNAVAILABLE: io exception] +2026-05-08 10:55:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:55:16 [snail-job-grpc-client-executor-127.0.0.1-342] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[342] message:[UNAVAILABLE: io exception] +2026-05-08 10:55:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:55:26 [snail-job-grpc-client-executor-127.0.0.1-343] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[343] message:[UNAVAILABLE: io exception] +2026-05-08 10:55:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:55:36 [snail-job-grpc-client-executor-127.0.0.1-345] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[345] message:[UNAVAILABLE: io exception] +2026-05-08 10:55:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:55:46 [snail-job-grpc-client-executor-127.0.0.1-346] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[346] message:[UNAVAILABLE: io exception] +2026-05-08 10:55:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:55:56 [snail-job-grpc-client-executor-127.0.0.1-347] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[347] message:[UNAVAILABLE: io exception] +2026-05-08 10:56:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:56:06 [snail-job-grpc-client-executor-127.0.0.1-348] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[348] message:[UNAVAILABLE: io exception] +2026-05-08 10:56:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:56:16 [snail-job-grpc-client-executor-127.0.0.1-349] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[349] message:[UNAVAILABLE: io exception] +2026-05-08 10:56:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:56:26 [snail-job-grpc-client-executor-127.0.0.1-350] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[350] message:[UNAVAILABLE: io exception] +2026-05-08 10:56:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:56:36 [snail-job-grpc-client-executor-127.0.0.1-352] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[351] message:[UNAVAILABLE: io exception] +2026-05-08 10:56:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:56:46 [snail-job-grpc-client-executor-127.0.0.1-353] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[353] message:[UNAVAILABLE: io exception] +2026-05-08 10:56:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:56:56 [snail-job-grpc-client-executor-127.0.0.1-354] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[354] message:[UNAVAILABLE: io exception] +2026-05-08 10:57:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:57:06 [snail-job-grpc-client-executor-127.0.0.1-355] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[355] message:[UNAVAILABLE: io exception] +2026-05-08 10:57:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:57:16 [snail-job-grpc-client-executor-127.0.0.1-356] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[356] message:[UNAVAILABLE: io exception] +2026-05-08 10:57:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:57:26 [snail-job-grpc-client-executor-127.0.0.1-357] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[357] message:[UNAVAILABLE: io exception] +2026-05-08 10:57:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:57:36 [snail-job-grpc-client-executor-127.0.0.1-358] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[358] message:[UNAVAILABLE: io exception] +2026-05-08 10:57:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:57:46 [snail-job-grpc-client-executor-127.0.0.1-360] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[360] message:[UNAVAILABLE: io exception] +2026-05-08 10:57:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:57:56 [snail-job-grpc-client-executor-127.0.0.1-361] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[361] message:[UNAVAILABLE: io exception] +2026-05-08 10:58:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:58:06 [snail-job-grpc-client-executor-127.0.0.1-362] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[362] message:[UNAVAILABLE: io exception] +2026-05-08 10:58:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:58:16 [snail-job-grpc-client-executor-127.0.0.1-363] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[363] message:[UNAVAILABLE: io exception] +2026-05-08 10:58:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:58:26 [snail-job-grpc-client-executor-127.0.0.1-364] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[364] message:[UNAVAILABLE: io exception] +2026-05-08 10:58:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:58:36 [snail-job-grpc-client-executor-127.0.0.1-366] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[366] message:[UNAVAILABLE: io exception] +2026-05-08 10:58:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:58:46 [snail-job-grpc-client-executor-127.0.0.1-367] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[367] message:[UNAVAILABLE: io exception] +2026-05-08 10:58:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:58:56 [snail-job-grpc-client-executor-127.0.0.1-368] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[368] message:[UNAVAILABLE: io exception] +2026-05-08 10:59:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:59:06 [snail-job-grpc-client-executor-127.0.0.1-369] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[369] message:[UNAVAILABLE: io exception] +2026-05-08 10:59:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:59:16 [snail-job-grpc-client-executor-127.0.0.1-370] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[370] message:[UNAVAILABLE: io exception] +2026-05-08 10:59:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:59:26 [snail-job-grpc-client-executor-127.0.0.1-371] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[371] message:[UNAVAILABLE: io exception] +2026-05-08 10:59:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:59:36 [snail-job-grpc-client-executor-127.0.0.1-372] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[373] message:[UNAVAILABLE: io exception] +2026-05-08 10:59:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:59:46 [snail-job-grpc-client-executor-127.0.0.1-374] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[374] message:[UNAVAILABLE: io exception] +2026-05-08 10:59:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 10:59:56 [snail-job-grpc-client-executor-127.0.0.1-375] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[375] message:[UNAVAILABLE: io exception] +2026-05-08 11:00:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:00:06 [snail-job-grpc-client-executor-127.0.0.1-376] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[376] message:[UNAVAILABLE: io exception] +2026-05-08 11:00:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:00:16 [snail-job-grpc-client-executor-127.0.0.1-377] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[377] message:[UNAVAILABLE: io exception] +2026-05-08 11:00:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:00:26 [snail-job-grpc-client-executor-127.0.0.1-378] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[378] message:[UNAVAILABLE: io exception] +2026-05-08 11:00:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:00:36 [snail-job-grpc-client-executor-127.0.0.1-379] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[379] message:[UNAVAILABLE: io exception] +2026-05-08 11:00:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:00:46 [snail-job-grpc-client-executor-127.0.0.1-381] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[381] message:[UNAVAILABLE: io exception] +2026-05-08 11:00:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:00:56 [snail-job-grpc-client-executor-127.0.0.1-382] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[382] message:[UNAVAILABLE: io exception] +2026-05-08 11:01:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:01:06 [snail-job-grpc-client-executor-127.0.0.1-383] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[383] message:[UNAVAILABLE: io exception] +2026-05-08 11:01:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:01:16 [snail-job-grpc-client-executor-127.0.0.1-384] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[384] message:[UNAVAILABLE: io exception] +2026-05-08 11:01:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:01:26 [snail-job-grpc-client-executor-127.0.0.1-385] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[385] message:[UNAVAILABLE: io exception] +2026-05-08 11:01:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:01:36 [snail-job-grpc-client-executor-127.0.0.1-386] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[387] message:[UNAVAILABLE: io exception] +2026-05-08 11:01:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:01:46 [snail-job-grpc-client-executor-127.0.0.1-388] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[388] message:[UNAVAILABLE: io exception] +2026-05-08 11:01:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:01:56 [snail-job-grpc-client-executor-127.0.0.1-389] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[389] message:[UNAVAILABLE: io exception] +2026-05-08 11:02:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:02:06 [snail-job-grpc-client-executor-127.0.0.1-390] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[390] message:[UNAVAILABLE: io exception] +2026-05-08 11:02:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:02:16 [snail-job-grpc-client-executor-127.0.0.1-391] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[391] message:[UNAVAILABLE: io exception] +2026-05-08 11:02:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:02:26 [snail-job-grpc-client-executor-127.0.0.1-392] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[392] message:[UNAVAILABLE: io exception] +2026-05-08 11:02:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:02:36 [snail-job-grpc-client-executor-127.0.0.1-394] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[394] message:[UNAVAILABLE: io exception] +2026-05-08 11:02:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:02:46 [snail-job-grpc-client-executor-127.0.0.1-395] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[395] message:[UNAVAILABLE: io exception] +2026-05-08 11:02:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:02:56 [snail-job-grpc-client-executor-127.0.0.1-396] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[396] message:[UNAVAILABLE: io exception] +2026-05-08 11:03:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:03:06 [snail-job-grpc-client-executor-127.0.0.1-397] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[397] message:[UNAVAILABLE: io exception] +2026-05-08 11:03:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:03:16 [snail-job-grpc-client-executor-127.0.0.1-398] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[398] message:[UNAVAILABLE: io exception] +2026-05-08 11:03:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:03:26 [snail-job-grpc-client-executor-127.0.0.1-399] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[399] message:[UNAVAILABLE: io exception] +2026-05-08 11:03:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:03:36 [snail-job-grpc-client-executor-127.0.0.1-400] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[400] message:[UNAVAILABLE: io exception] +2026-05-08 11:03:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:03:46 [snail-job-grpc-client-executor-127.0.0.1-402] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[402] message:[UNAVAILABLE: io exception] +2026-05-08 11:03:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:03:56 [snail-job-grpc-client-executor-127.0.0.1-403] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[403] message:[UNAVAILABLE: io exception] +2026-05-08 11:04:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:04:06 [snail-job-grpc-client-executor-127.0.0.1-404] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[404] message:[UNAVAILABLE: io exception] +2026-05-08 11:04:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:04:16 [snail-job-grpc-client-executor-127.0.0.1-405] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[405] message:[UNAVAILABLE: io exception] +2026-05-08 11:04:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:04:26 [snail-job-grpc-client-executor-127.0.0.1-406] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[406] message:[UNAVAILABLE: io exception] +2026-05-08 11:04:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:04:36 [snail-job-grpc-client-executor-127.0.0.1-407] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[407] message:[UNAVAILABLE: io exception] +2026-05-08 11:04:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:04:46 [snail-job-grpc-client-executor-127.0.0.1-409] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[409] message:[UNAVAILABLE: io exception] +2026-05-08 11:04:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:04:56 [snail-job-grpc-client-executor-127.0.0.1-410] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[410] message:[UNAVAILABLE: io exception] +2026-05-08 11:05:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:05:06 [snail-job-grpc-client-executor-127.0.0.1-411] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[411] message:[UNAVAILABLE: io exception] +2026-05-08 11:05:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:05:16 [snail-job-grpc-client-executor-127.0.0.1-412] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[412] message:[UNAVAILABLE: io exception] +2026-05-08 11:05:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:05:26 [snail-job-grpc-client-executor-127.0.0.1-413] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[413] message:[UNAVAILABLE: io exception] +2026-05-08 11:05:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:05:36 [snail-job-grpc-client-executor-127.0.0.1-414] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[414] message:[UNAVAILABLE: io exception] +2026-05-08 11:05:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:05:46 [snail-job-grpc-client-executor-127.0.0.1-416] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[416] message:[UNAVAILABLE: io exception] +2026-05-08 11:05:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:05:56 [snail-job-grpc-client-executor-127.0.0.1-417] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[417] message:[UNAVAILABLE: io exception] +2026-05-08 11:06:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:06:06 [snail-job-grpc-client-executor-127.0.0.1-418] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[418] message:[UNAVAILABLE: io exception] +2026-05-08 11:06:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:06:16 [snail-job-grpc-client-executor-127.0.0.1-419] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[419] message:[UNAVAILABLE: io exception] +2026-05-08 11:06:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:06:26 [snail-job-grpc-client-executor-127.0.0.1-420] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[420] message:[UNAVAILABLE: io exception] +2026-05-08 11:06:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:06:36 [snail-job-grpc-client-executor-127.0.0.1-421] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[421] message:[UNAVAILABLE: io exception] +2026-05-08 11:06:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:06:46 [snail-job-grpc-client-executor-127.0.0.1-423] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[423] message:[UNAVAILABLE: io exception] +2026-05-08 11:06:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:06:56 [snail-job-grpc-client-executor-127.0.0.1-424] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[424] message:[UNAVAILABLE: io exception] +2026-05-08 11:07:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:07:06 [snail-job-grpc-client-executor-127.0.0.1-425] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[425] message:[UNAVAILABLE: io exception] +2026-05-08 11:07:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:07:16 [snail-job-grpc-client-executor-127.0.0.1-426] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[426] message:[UNAVAILABLE: io exception] +2026-05-08 11:07:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:07:26 [snail-job-grpc-client-executor-127.0.0.1-427] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[427] message:[UNAVAILABLE: io exception] +2026-05-08 11:07:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:07:36 [snail-job-grpc-client-executor-127.0.0.1-428] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[429] message:[UNAVAILABLE: io exception] +2026-05-08 11:07:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:07:46 [snail-job-grpc-client-executor-127.0.0.1-430] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[430] message:[UNAVAILABLE: io exception] +2026-05-08 11:07:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:07:56 [snail-job-grpc-client-executor-127.0.0.1-431] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[431] message:[UNAVAILABLE: io exception] +2026-05-08 11:08:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:08:06 [snail-job-grpc-client-executor-127.0.0.1-432] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[432] message:[UNAVAILABLE: io exception] +2026-05-08 11:08:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:08:16 [snail-job-grpc-client-executor-127.0.0.1-433] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[433] message:[UNAVAILABLE: io exception] +2026-05-08 11:08:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:08:26 [snail-job-grpc-client-executor-127.0.0.1-434] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[434] message:[UNAVAILABLE: io exception] +2026-05-08 11:08:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:08:36 [snail-job-grpc-client-executor-127.0.0.1-435] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[435] message:[UNAVAILABLE: io exception] +2026-05-08 11:08:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:08:46 [snail-job-grpc-client-executor-127.0.0.1-437] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[437] message:[UNAVAILABLE: io exception] +2026-05-08 11:08:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:08:56 [snail-job-grpc-client-executor-127.0.0.1-438] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[438] message:[UNAVAILABLE: io exception] +2026-05-08 11:09:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:09:06 [snail-job-grpc-client-executor-127.0.0.1-439] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[439] message:[UNAVAILABLE: io exception] +2026-05-08 11:09:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:09:16 [snail-job-grpc-client-executor-127.0.0.1-440] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[440] message:[UNAVAILABLE: io exception] +2026-05-08 11:09:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:09:26 [snail-job-grpc-client-executor-127.0.0.1-441] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[441] message:[UNAVAILABLE: io exception] +2026-05-08 11:09:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:09:36 [snail-job-grpc-client-executor-127.0.0.1-443] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[443] message:[UNAVAILABLE: io exception] +2026-05-08 11:09:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:09:46 [snail-job-grpc-client-executor-127.0.0.1-444] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[444] message:[UNAVAILABLE: io exception] +2026-05-08 11:09:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:09:56 [snail-job-grpc-client-executor-127.0.0.1-445] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[445] message:[UNAVAILABLE: io exception] +2026-05-08 11:10:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:10:06 [snail-job-grpc-client-executor-127.0.0.1-446] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[446] message:[UNAVAILABLE: io exception] +2026-05-08 11:10:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:10:16 [snail-job-grpc-client-executor-127.0.0.1-447] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[447] message:[UNAVAILABLE: io exception] +2026-05-08 11:10:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:10:26 [snail-job-grpc-client-executor-127.0.0.1-448] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[448] message:[UNAVAILABLE: io exception] +2026-05-08 11:10:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:10:36 [snail-job-grpc-client-executor-127.0.0.1-449] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[449] message:[UNAVAILABLE: io exception] +2026-05-08 11:10:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:10:46 [snail-job-grpc-client-executor-127.0.0.1-451] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[451] message:[UNAVAILABLE: io exception] +2026-05-08 11:10:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:10:56 [snail-job-grpc-client-executor-127.0.0.1-452] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[452] message:[UNAVAILABLE: io exception] +2026-05-08 11:11:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:11:06 [snail-job-grpc-client-executor-127.0.0.1-453] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[453] message:[UNAVAILABLE: io exception] +2026-05-08 11:11:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:11:16 [snail-job-grpc-client-executor-127.0.0.1-454] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[454] message:[UNAVAILABLE: io exception] +2026-05-08 11:11:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:11:26 [snail-job-grpc-client-executor-127.0.0.1-455] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[455] message:[UNAVAILABLE: io exception] +2026-05-08 11:11:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:11:36 [snail-job-grpc-client-executor-127.0.0.1-456] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[457] message:[UNAVAILABLE: io exception] +2026-05-08 11:11:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:11:46 [snail-job-grpc-client-executor-127.0.0.1-458] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[458] message:[UNAVAILABLE: io exception] +2026-05-08 11:11:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:11:56 [snail-job-grpc-client-executor-127.0.0.1-459] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[459] message:[UNAVAILABLE: io exception] +2026-05-08 11:12:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:12:06 [snail-job-grpc-client-executor-127.0.0.1-460] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[460] message:[UNAVAILABLE: io exception] +2026-05-08 11:12:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:12:16 [snail-job-grpc-client-executor-127.0.0.1-461] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[461] message:[UNAVAILABLE: io exception] +2026-05-08 11:12:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:12:26 [snail-job-grpc-client-executor-127.0.0.1-462] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[462] message:[UNAVAILABLE: io exception] +2026-05-08 11:12:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:12:36 [snail-job-grpc-client-executor-127.0.0.1-464] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[464] message:[UNAVAILABLE: io exception] +2026-05-08 11:12:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:12:46 [snail-job-grpc-client-executor-127.0.0.1-465] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[465] message:[UNAVAILABLE: io exception] +2026-05-08 11:12:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:12:56 [snail-job-grpc-client-executor-127.0.0.1-466] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[466] message:[UNAVAILABLE: io exception] +2026-05-08 11:13:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:13:06 [snail-job-grpc-client-executor-127.0.0.1-467] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[467] message:[UNAVAILABLE: io exception] +2026-05-08 11:13:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:13:16 [snail-job-grpc-client-executor-127.0.0.1-468] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[468] message:[UNAVAILABLE: io exception] +2026-05-08 11:13:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:13:26 [snail-job-grpc-client-executor-127.0.0.1-469] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[469] message:[UNAVAILABLE: io exception] +2026-05-08 11:13:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:13:36 [snail-job-grpc-client-executor-127.0.0.1-471] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[470] message:[UNAVAILABLE: io exception] +2026-05-08 11:13:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:13:46 [snail-job-grpc-client-executor-127.0.0.1-472] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[472] message:[UNAVAILABLE: io exception] +2026-05-08 11:13:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:13:56 [snail-job-grpc-client-executor-127.0.0.1-473] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[473] message:[UNAVAILABLE: io exception] +2026-05-08 11:14:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:14:06 [snail-job-grpc-client-executor-127.0.0.1-474] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[474] message:[UNAVAILABLE: io exception] +2026-05-08 11:14:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:14:16 [snail-job-grpc-client-executor-127.0.0.1-475] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[475] message:[UNAVAILABLE: io exception] +2026-05-08 11:14:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:14:26 [snail-job-grpc-client-executor-127.0.0.1-476] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[476] message:[UNAVAILABLE: io exception] +2026-05-08 11:14:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:14:36 [snail-job-grpc-client-executor-127.0.0.1-478] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[478] message:[UNAVAILABLE: io exception] +2026-05-08 11:14:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:14:46 [snail-job-grpc-client-executor-127.0.0.1-479] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[479] message:[UNAVAILABLE: io exception] +2026-05-08 11:14:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:14:56 [snail-job-grpc-client-executor-127.0.0.1-480] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[480] message:[UNAVAILABLE: io exception] +2026-05-08 11:15:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:15:06 [snail-job-grpc-client-executor-127.0.0.1-481] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[481] message:[UNAVAILABLE: io exception] +2026-05-08 11:15:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:15:16 [snail-job-grpc-client-executor-127.0.0.1-482] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[482] message:[UNAVAILABLE: io exception] +2026-05-08 11:15:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:15:26 [snail-job-grpc-client-executor-127.0.0.1-483] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[483] message:[UNAVAILABLE: io exception] +2026-05-08 11:15:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:15:36 [snail-job-grpc-client-executor-127.0.0.1-484] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[484] message:[UNAVAILABLE: io exception] +2026-05-08 11:15:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:15:46 [snail-job-grpc-client-executor-127.0.0.1-486] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[486] message:[UNAVAILABLE: io exception] +2026-05-08 11:15:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:15:56 [snail-job-grpc-client-executor-127.0.0.1-487] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[487] message:[UNAVAILABLE: io exception] +2026-05-08 11:16:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:16:06 [snail-job-grpc-client-executor-127.0.0.1-488] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[488] message:[UNAVAILABLE: io exception] +2026-05-08 11:16:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:16:16 [snail-job-grpc-client-executor-127.0.0.1-489] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[489] message:[UNAVAILABLE: io exception] +2026-05-08 11:16:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:16:26 [snail-job-grpc-client-executor-127.0.0.1-490] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[490] message:[UNAVAILABLE: io exception] +2026-05-08 11:16:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:16:36 [snail-job-grpc-client-executor-127.0.0.1-491] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[492] message:[UNAVAILABLE: io exception] +2026-05-08 11:16:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:16:46 [snail-job-grpc-client-executor-127.0.0.1-493] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[493] message:[UNAVAILABLE: io exception] +2026-05-08 11:16:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:16:56 [snail-job-grpc-client-executor-127.0.0.1-494] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[494] message:[UNAVAILABLE: io exception] +2026-05-08 11:17:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:17:06 [snail-job-grpc-client-executor-127.0.0.1-495] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[495] message:[UNAVAILABLE: io exception] +2026-05-08 11:17:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:17:16 [snail-job-grpc-client-executor-127.0.0.1-496] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[496] message:[UNAVAILABLE: io exception] +2026-05-08 11:17:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:17:26 [snail-job-grpc-client-executor-127.0.0.1-497] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[497] message:[UNAVAILABLE: io exception] +2026-05-08 11:17:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:17:36 [snail-job-grpc-client-executor-127.0.0.1-499] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[498] message:[UNAVAILABLE: io exception] +2026-05-08 11:17:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:17:46 [snail-job-grpc-client-executor-127.0.0.1-500] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[500] message:[UNAVAILABLE: io exception] +2026-05-08 11:17:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:17:56 [snail-job-grpc-client-executor-127.0.0.1-501] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[501] message:[UNAVAILABLE: io exception] +2026-05-08 11:18:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:18:06 [snail-job-grpc-client-executor-127.0.0.1-502] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[502] message:[UNAVAILABLE: io exception] +2026-05-08 11:18:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:18:16 [snail-job-grpc-client-executor-127.0.0.1-503] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[503] message:[UNAVAILABLE: io exception] +2026-05-08 11:18:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:18:26 [snail-job-grpc-client-executor-127.0.0.1-504] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[504] message:[UNAVAILABLE: io exception] +2026-05-08 11:18:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:18:36 [snail-job-grpc-client-executor-127.0.0.1-506] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[505] message:[UNAVAILABLE: io exception] +2026-05-08 11:18:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:18:46 [snail-job-grpc-client-executor-127.0.0.1-507] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[507] message:[UNAVAILABLE: io exception] +2026-05-08 11:18:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:18:56 [snail-job-grpc-client-executor-127.0.0.1-508] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[508] message:[UNAVAILABLE: io exception] +2026-05-08 11:19:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:19:06 [snail-job-grpc-client-executor-127.0.0.1-509] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[509] message:[UNAVAILABLE: io exception] +2026-05-08 11:19:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:19:16 [snail-job-grpc-client-executor-127.0.0.1-510] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[510] message:[UNAVAILABLE: io exception] +2026-05-08 11:19:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:19:26 [snail-job-grpc-client-executor-127.0.0.1-511] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[511] message:[UNAVAILABLE: io exception] +2026-05-08 11:19:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:19:36 [snail-job-grpc-client-executor-127.0.0.1-512] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[512] message:[UNAVAILABLE: io exception] +2026-05-08 11:19:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:19:46 [snail-job-grpc-client-executor-127.0.0.1-514] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[514] message:[UNAVAILABLE: io exception] +2026-05-08 11:19:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:19:56 [snail-job-grpc-client-executor-127.0.0.1-515] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[515] message:[UNAVAILABLE: io exception] +2026-05-08 11:20:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:20:06 [snail-job-grpc-client-executor-127.0.0.1-516] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[516] message:[UNAVAILABLE: io exception] +2026-05-08 11:20:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:20:16 [snail-job-grpc-client-executor-127.0.0.1-517] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[517] message:[UNAVAILABLE: io exception] +2026-05-08 11:20:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:20:26 [snail-job-grpc-client-executor-127.0.0.1-518] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[518] message:[UNAVAILABLE: io exception] +2026-05-08 11:20:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:20:36 [snail-job-grpc-client-executor-127.0.0.1-520] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[519] message:[UNAVAILABLE: io exception] +2026-05-08 11:20:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:20:46 [snail-job-grpc-client-executor-127.0.0.1-521] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[521] message:[UNAVAILABLE: io exception] +2026-05-08 11:20:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:20:56 [snail-job-grpc-client-executor-127.0.0.1-522] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[522] message:[UNAVAILABLE: io exception] +2026-05-08 11:21:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:21:06 [snail-job-grpc-client-executor-127.0.0.1-523] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[523] message:[UNAVAILABLE: io exception] +2026-05-08 11:21:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:21:16 [snail-job-grpc-client-executor-127.0.0.1-524] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[524] message:[UNAVAILABLE: io exception] +2026-05-08 11:21:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:21:26 [snail-job-grpc-client-executor-127.0.0.1-525] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[525] message:[UNAVAILABLE: io exception] +2026-05-08 11:21:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:21:36 [snail-job-grpc-client-executor-127.0.0.1-526] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[526] message:[UNAVAILABLE: io exception] +2026-05-08 11:21:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:21:46 [snail-job-grpc-client-executor-127.0.0.1-528] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[528] message:[UNAVAILABLE: io exception] +2026-05-08 11:21:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:21:56 [snail-job-grpc-client-executor-127.0.0.1-529] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[529] message:[UNAVAILABLE: io exception] +2026-05-08 11:22:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:22:06 [snail-job-grpc-client-executor-127.0.0.1-530] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[530] message:[UNAVAILABLE: io exception] +2026-05-08 11:22:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:22:16 [snail-job-grpc-client-executor-127.0.0.1-531] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[531] message:[UNAVAILABLE: io exception] +2026-05-08 11:22:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:22:26 [snail-job-grpc-client-executor-127.0.0.1-532] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[532] message:[UNAVAILABLE: io exception] +2026-05-08 11:22:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:22:36 [snail-job-grpc-client-executor-127.0.0.1-533] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[534] message:[UNAVAILABLE: io exception] +2026-05-08 11:22:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:22:46 [snail-job-grpc-client-executor-127.0.0.1-535] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[535] message:[UNAVAILABLE: io exception] +2026-05-08 11:22:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:22:56 [snail-job-grpc-client-executor-127.0.0.1-536] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[536] message:[UNAVAILABLE: io exception] +2026-05-08 11:23:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:23:06 [snail-job-grpc-client-executor-127.0.0.1-537] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[537] message:[UNAVAILABLE: io exception] +2026-05-08 11:23:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:23:16 [snail-job-grpc-client-executor-127.0.0.1-538] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[538] message:[UNAVAILABLE: io exception] +2026-05-08 11:23:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:23:26 [snail-job-grpc-client-executor-127.0.0.1-539] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[539] message:[UNAVAILABLE: io exception] +2026-05-08 11:23:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:23:36 [snail-job-grpc-client-executor-127.0.0.1-540] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[540] message:[UNAVAILABLE: io exception] +2026-05-08 11:23:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:23:46 [snail-job-grpc-client-executor-127.0.0.1-542] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[542] message:[UNAVAILABLE: io exception] +2026-05-08 11:23:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:23:56 [snail-job-grpc-client-executor-127.0.0.1-543] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[543] message:[UNAVAILABLE: io exception] +2026-05-08 11:24:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:24:06 [snail-job-grpc-client-executor-127.0.0.1-544] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[544] message:[UNAVAILABLE: io exception] +2026-05-08 11:24:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:24:16 [snail-job-grpc-client-executor-127.0.0.1-545] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[545] message:[UNAVAILABLE: io exception] +2026-05-08 11:24:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:24:26 [snail-job-grpc-client-executor-127.0.0.1-546] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[546] message:[UNAVAILABLE: io exception] +2026-05-08 11:24:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:24:36 [snail-job-grpc-client-executor-127.0.0.1-547] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[548] message:[UNAVAILABLE: io exception] +2026-05-08 11:24:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:24:46 [snail-job-grpc-client-executor-127.0.0.1-549] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[549] message:[UNAVAILABLE: io exception] +2026-05-08 11:24:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:24:56 [snail-job-grpc-client-executor-127.0.0.1-550] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[550] message:[UNAVAILABLE: io exception] +2026-05-08 11:25:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:25:06 [snail-job-grpc-client-executor-127.0.0.1-551] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[551] message:[UNAVAILABLE: io exception] +2026-05-08 11:25:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:25:16 [snail-job-grpc-client-executor-127.0.0.1-552] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[552] message:[UNAVAILABLE: io exception] +2026-05-08 11:25:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:25:26 [snail-job-grpc-client-executor-127.0.0.1-553] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[553] message:[UNAVAILABLE: io exception] +2026-05-08 11:25:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:25:36 [snail-job-grpc-client-executor-127.0.0.1-554] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[554] message:[UNAVAILABLE: io exception] +2026-05-08 11:25:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:25:46 [snail-job-grpc-client-executor-127.0.0.1-556] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[556] message:[UNAVAILABLE: io exception] +2026-05-08 11:25:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:25:56 [snail-job-grpc-client-executor-127.0.0.1-557] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[557] message:[UNAVAILABLE: io exception] +2026-05-08 11:26:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:26:06 [snail-job-grpc-client-executor-127.0.0.1-558] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[558] message:[UNAVAILABLE: io exception] +2026-05-08 11:26:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:26:16 [snail-job-grpc-client-executor-127.0.0.1-559] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[559] message:[UNAVAILABLE: io exception] +2026-05-08 11:26:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:26:26 [snail-job-grpc-client-executor-127.0.0.1-560] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[560] message:[UNAVAILABLE: io exception] +2026-05-08 11:26:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:26:36 [snail-job-grpc-client-executor-127.0.0.1-561] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[561] message:[UNAVAILABLE: io exception] +2026-05-08 11:26:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:26:46 [snail-job-grpc-client-executor-127.0.0.1-563] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[563] message:[UNAVAILABLE: io exception] +2026-05-08 11:26:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:26:56 [snail-job-grpc-client-executor-127.0.0.1-564] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[564] message:[UNAVAILABLE: io exception] +2026-05-08 11:27:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:27:06 [snail-job-grpc-client-executor-127.0.0.1-565] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[565] message:[UNAVAILABLE: io exception] +2026-05-08 11:27:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:27:16 [snail-job-grpc-client-executor-127.0.0.1-566] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[566] message:[UNAVAILABLE: io exception] +2026-05-08 11:27:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:27:26 [snail-job-grpc-client-executor-127.0.0.1-567] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[567] message:[UNAVAILABLE: io exception] +2026-05-08 11:27:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:27:36 [snail-job-grpc-client-executor-127.0.0.1-568] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[568] message:[UNAVAILABLE: io exception] +2026-05-08 11:27:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:27:46 [snail-job-grpc-client-executor-127.0.0.1-570] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[570] message:[UNAVAILABLE: io exception] +2026-05-08 11:27:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:27:56 [snail-job-grpc-client-executor-127.0.0.1-571] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[571] message:[UNAVAILABLE: io exception] +2026-05-08 11:28:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:28:06 [snail-job-grpc-client-executor-127.0.0.1-572] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[572] message:[UNAVAILABLE: io exception] +2026-05-08 11:28:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:28:16 [snail-job-grpc-client-executor-127.0.0.1-573] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[573] message:[UNAVAILABLE: io exception] +2026-05-08 11:28:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:28:26 [snail-job-grpc-client-executor-127.0.0.1-574] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[574] message:[UNAVAILABLE: io exception] +2026-05-08 11:28:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:28:36 [snail-job-grpc-client-executor-127.0.0.1-575] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[576] message:[UNAVAILABLE: io exception] +2026-05-08 11:28:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:28:46 [snail-job-grpc-client-executor-127.0.0.1-577] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[577] message:[UNAVAILABLE: io exception] +2026-05-08 11:28:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:28:56 [snail-job-grpc-client-executor-127.0.0.1-578] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[578] message:[UNAVAILABLE: io exception] +2026-05-08 11:29:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:29:06 [snail-job-grpc-client-executor-127.0.0.1-579] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[579] message:[UNAVAILABLE: io exception] +2026-05-08 11:29:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:29:16 [snail-job-grpc-client-executor-127.0.0.1-580] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[580] message:[UNAVAILABLE: io exception] +2026-05-08 11:29:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:29:26 [snail-job-grpc-client-executor-127.0.0.1-581] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[581] message:[UNAVAILABLE: io exception] +2026-05-08 11:29:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:29:36 [snail-job-grpc-client-executor-127.0.0.1-583] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[583] message:[UNAVAILABLE: io exception] +2026-05-08 11:29:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:29:46 [snail-job-grpc-client-executor-127.0.0.1-584] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[584] message:[UNAVAILABLE: io exception] +2026-05-08 11:29:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:29:56 [snail-job-grpc-client-executor-127.0.0.1-585] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[585] message:[UNAVAILABLE: io exception] +2026-05-08 11:30:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:30:06 [snail-job-grpc-client-executor-127.0.0.1-586] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[586] message:[UNAVAILABLE: io exception] +2026-05-08 11:30:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:30:16 [snail-job-grpc-client-executor-127.0.0.1-587] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[587] message:[UNAVAILABLE: io exception] +2026-05-08 11:30:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:30:26 [snail-job-grpc-client-executor-127.0.0.1-588] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[588] message:[UNAVAILABLE: io exception] +2026-05-08 11:30:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:30:36 [snail-job-grpc-client-executor-127.0.0.1-590] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[589] message:[UNAVAILABLE: io exception] +2026-05-08 11:30:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:30:46 [snail-job-grpc-client-executor-127.0.0.1-591] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[591] message:[UNAVAILABLE: io exception] +2026-05-08 11:30:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:30:56 [snail-job-grpc-client-executor-127.0.0.1-592] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[592] message:[UNAVAILABLE: io exception] +2026-05-08 11:31:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:31:06 [snail-job-grpc-client-executor-127.0.0.1-593] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[593] message:[UNAVAILABLE: io exception] +2026-05-08 11:31:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:31:16 [snail-job-grpc-client-executor-127.0.0.1-594] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[594] message:[UNAVAILABLE: io exception] +2026-05-08 11:31:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:31:26 [snail-job-grpc-client-executor-127.0.0.1-595] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[595] message:[UNAVAILABLE: io exception] +2026-05-08 11:31:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:31:36 [snail-job-grpc-client-executor-127.0.0.1-597] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[597] message:[UNAVAILABLE: io exception] +2026-05-08 11:31:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:31:46 [snail-job-grpc-client-executor-127.0.0.1-598] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[598] message:[UNAVAILABLE: io exception] +2026-05-08 11:31:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:31:56 [snail-job-grpc-client-executor-127.0.0.1-599] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[599] message:[UNAVAILABLE: io exception] +2026-05-08 11:32:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:32:06 [snail-job-grpc-client-executor-127.0.0.1-600] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[600] message:[UNAVAILABLE: io exception] +2026-05-08 11:32:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:32:16 [snail-job-grpc-client-executor-127.0.0.1-601] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[601] message:[UNAVAILABLE: io exception] +2026-05-08 11:32:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:32:26 [snail-job-grpc-client-executor-127.0.0.1-602] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[602] message:[UNAVAILABLE: io exception] +2026-05-08 11:32:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:32:36 [snail-job-grpc-client-executor-127.0.0.1-603] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[603] message:[UNAVAILABLE: io exception] +2026-05-08 11:32:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:32:46 [snail-job-grpc-client-executor-127.0.0.1-605] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[605] message:[UNAVAILABLE: io exception] +2026-05-08 11:32:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:32:56 [snail-job-grpc-client-executor-127.0.0.1-606] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[606] message:[UNAVAILABLE: io exception] +2026-05-08 11:33:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:33:06 [snail-job-grpc-client-executor-127.0.0.1-607] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[607] message:[UNAVAILABLE: io exception] +2026-05-08 11:33:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:33:16 [snail-job-grpc-client-executor-127.0.0.1-608] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[608] message:[UNAVAILABLE: io exception] +2026-05-08 11:33:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:33:26 [snail-job-grpc-client-executor-127.0.0.1-609] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[609] message:[UNAVAILABLE: io exception] +2026-05-08 11:33:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:33:36 [snail-job-grpc-client-executor-127.0.0.1-610] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[611] message:[UNAVAILABLE: io exception] +2026-05-08 11:33:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:33:46 [snail-job-grpc-client-executor-127.0.0.1-612] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[612] message:[UNAVAILABLE: io exception] +2026-05-08 11:33:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:33:56 [snail-job-grpc-client-executor-127.0.0.1-613] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[613] message:[UNAVAILABLE: io exception] +2026-05-08 11:34:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:34:06 [snail-job-grpc-client-executor-127.0.0.1-614] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[614] message:[UNAVAILABLE: io exception] +2026-05-08 11:34:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:34:16 [snail-job-grpc-client-executor-127.0.0.1-615] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[615] message:[UNAVAILABLE: io exception] +2026-05-08 11:34:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:34:26 [snail-job-grpc-client-executor-127.0.0.1-616] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[616] message:[UNAVAILABLE: io exception] +2026-05-08 11:34:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:34:36 [snail-job-grpc-client-executor-127.0.0.1-617] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[617] message:[UNAVAILABLE: io exception] +2026-05-08 11:34:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:34:46 [snail-job-grpc-client-executor-127.0.0.1-619] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[619] message:[UNAVAILABLE: io exception] +2026-05-08 11:34:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:34:56 [snail-job-grpc-client-executor-127.0.0.1-620] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[620] message:[UNAVAILABLE: io exception] +2026-05-08 11:35:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:35:06 [snail-job-grpc-client-executor-127.0.0.1-621] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[621] message:[UNAVAILABLE: io exception] +2026-05-08 11:35:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:35:16 [snail-job-grpc-client-executor-127.0.0.1-622] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[622] message:[UNAVAILABLE: io exception] +2026-05-08 11:35:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:35:26 [snail-job-grpc-client-executor-127.0.0.1-623] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[623] message:[UNAVAILABLE: io exception] +2026-05-08 11:35:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:35:36 [snail-job-grpc-client-executor-127.0.0.1-625] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[625] message:[UNAVAILABLE: io exception] +2026-05-08 11:35:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:35:46 [snail-job-grpc-client-executor-127.0.0.1-626] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[626] message:[UNAVAILABLE: io exception] +2026-05-08 11:35:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:35:56 [snail-job-grpc-client-executor-127.0.0.1-627] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[627] message:[UNAVAILABLE: io exception] +2026-05-08 11:36:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:36:06 [snail-job-grpc-client-executor-127.0.0.1-628] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[628] message:[UNAVAILABLE: io exception] +2026-05-08 11:36:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:36:16 [snail-job-grpc-client-executor-127.0.0.1-629] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[629] message:[UNAVAILABLE: io exception] +2026-05-08 11:36:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:36:26 [snail-job-grpc-client-executor-127.0.0.1-630] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[630] message:[UNAVAILABLE: io exception] +2026-05-08 11:36:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:36:36 [snail-job-grpc-client-executor-127.0.0.1-632] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[631] message:[UNAVAILABLE: io exception] +2026-05-08 11:36:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:36:46 [snail-job-grpc-client-executor-127.0.0.1-633] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[633] message:[UNAVAILABLE: io exception] +2026-05-08 11:36:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:36:56 [snail-job-grpc-client-executor-127.0.0.1-634] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[634] message:[UNAVAILABLE: io exception] +2026-05-08 11:37:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:37:06 [snail-job-grpc-client-executor-127.0.0.1-635] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[635] message:[UNAVAILABLE: io exception] +2026-05-08 11:37:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:37:16 [snail-job-grpc-client-executor-127.0.0.1-636] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[636] message:[UNAVAILABLE: io exception] +2026-05-08 11:37:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:37:26 [snail-job-grpc-client-executor-127.0.0.1-637] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[637] message:[UNAVAILABLE: io exception] +2026-05-08 11:37:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:37:36 [snail-job-grpc-client-executor-127.0.0.1-638] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[638] message:[UNAVAILABLE: io exception] +2026-05-08 11:37:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:37:46 [snail-job-grpc-client-executor-127.0.0.1-640] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[640] message:[UNAVAILABLE: io exception] +2026-05-08 11:37:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:37:56 [snail-job-grpc-client-executor-127.0.0.1-641] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[641] message:[UNAVAILABLE: io exception] +2026-05-08 11:38:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:38:06 [snail-job-grpc-client-executor-127.0.0.1-642] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[642] message:[UNAVAILABLE: io exception] +2026-05-08 11:38:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:38:16 [snail-job-grpc-client-executor-127.0.0.1-643] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[643] message:[UNAVAILABLE: io exception] +2026-05-08 11:38:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:38:26 [snail-job-grpc-client-executor-127.0.0.1-644] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[644] message:[UNAVAILABLE: io exception] +2026-05-08 11:38:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:38:36 [snail-job-grpc-client-executor-127.0.0.1-645] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[645] message:[UNAVAILABLE: io exception] +2026-05-08 11:38:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:38:46 [snail-job-grpc-client-executor-127.0.0.1-647] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[647] message:[UNAVAILABLE: io exception] +2026-05-08 11:38:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:38:56 [snail-job-grpc-client-executor-127.0.0.1-648] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[648] message:[UNAVAILABLE: io exception] +2026-05-08 11:39:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:39:06 [snail-job-grpc-client-executor-127.0.0.1-649] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[649] message:[UNAVAILABLE: io exception] +2026-05-08 11:39:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:39:16 [snail-job-grpc-client-executor-127.0.0.1-650] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[650] message:[UNAVAILABLE: io exception] +2026-05-08 11:39:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:39:26 [snail-job-grpc-client-executor-127.0.0.1-651] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[651] message:[UNAVAILABLE: io exception] +2026-05-08 11:39:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:39:36 [snail-job-grpc-client-executor-127.0.0.1-652] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[653] message:[UNAVAILABLE: io exception] +2026-05-08 11:39:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:39:46 [snail-job-grpc-client-executor-127.0.0.1-654] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[654] message:[UNAVAILABLE: io exception] +2026-05-08 11:39:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:39:56 [snail-job-grpc-client-executor-127.0.0.1-655] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[655] message:[UNAVAILABLE: io exception] +2026-05-08 11:40:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:40:06 [snail-job-grpc-client-executor-127.0.0.1-656] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[656] message:[UNAVAILABLE: io exception] +2026-05-08 11:40:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:40:16 [snail-job-grpc-client-executor-127.0.0.1-657] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[657] message:[UNAVAILABLE: io exception] +2026-05-08 11:40:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:40:26 [snail-job-grpc-client-executor-127.0.0.1-658] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[658] message:[UNAVAILABLE: io exception] +2026-05-08 11:40:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:40:36 [snail-job-grpc-client-executor-127.0.0.1-659] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[659] message:[UNAVAILABLE: io exception] +2026-05-08 11:40:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:40:46 [snail-job-grpc-client-executor-127.0.0.1-661] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[661] message:[UNAVAILABLE: io exception] +2026-05-08 11:40:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:40:56 [snail-job-grpc-client-executor-127.0.0.1-662] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[662] message:[UNAVAILABLE: io exception] +2026-05-08 11:41:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:41:06 [snail-job-grpc-client-executor-127.0.0.1-663] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[663] message:[UNAVAILABLE: io exception] +2026-05-08 11:41:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:41:16 [snail-job-grpc-client-executor-127.0.0.1-664] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[664] message:[UNAVAILABLE: io exception] +2026-05-08 11:41:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:41:26 [snail-job-grpc-client-executor-127.0.0.1-665] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[665] message:[UNAVAILABLE: io exception] +2026-05-08 11:41:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:41:36 [snail-job-grpc-client-executor-127.0.0.1-667] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[666] message:[UNAVAILABLE: io exception] +2026-05-08 11:41:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:41:46 [snail-job-grpc-client-executor-127.0.0.1-668] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[668] message:[UNAVAILABLE: io exception] +2026-05-08 11:41:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:41:56 [snail-job-grpc-client-executor-127.0.0.1-669] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[669] message:[UNAVAILABLE: io exception] +2026-05-08 11:42:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:42:06 [snail-job-grpc-client-executor-127.0.0.1-670] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[670] message:[UNAVAILABLE: io exception] +2026-05-08 11:42:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:42:16 [snail-job-grpc-client-executor-127.0.0.1-671] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[671] message:[UNAVAILABLE: io exception] +2026-05-08 11:42:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:42:26 [snail-job-grpc-client-executor-127.0.0.1-672] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[672] message:[UNAVAILABLE: io exception] +2026-05-08 11:42:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:42:36 [snail-job-grpc-client-executor-127.0.0.1-673] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[673] message:[UNAVAILABLE: io exception] +2026-05-08 11:42:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:42:46 [snail-job-grpc-client-executor-127.0.0.1-675] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[675] message:[UNAVAILABLE: io exception] +2026-05-08 11:42:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:42:56 [snail-job-grpc-client-executor-127.0.0.1-676] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[676] message:[UNAVAILABLE: io exception] +2026-05-08 11:43:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:43:06 [snail-job-grpc-client-executor-127.0.0.1-677] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[677] message:[UNAVAILABLE: io exception] +2026-05-08 11:43:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:43:16 [snail-job-grpc-client-executor-127.0.0.1-678] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[678] message:[UNAVAILABLE: io exception] +2026-05-08 11:43:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:43:26 [snail-job-grpc-client-executor-127.0.0.1-679] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[679] message:[UNAVAILABLE: io exception] +2026-05-08 11:43:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:43:36 [snail-job-grpc-client-executor-127.0.0.1-681] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[681] message:[UNAVAILABLE: io exception] +2026-05-08 11:43:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:43:46 [snail-job-grpc-client-executor-127.0.0.1-682] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[682] message:[UNAVAILABLE: io exception] +2026-05-08 11:43:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:43:56 [snail-job-grpc-client-executor-127.0.0.1-683] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[683] message:[UNAVAILABLE: io exception] +2026-05-08 11:44:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:44:06 [snail-job-grpc-client-executor-127.0.0.1-684] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[684] message:[UNAVAILABLE: io exception] +2026-05-08 11:44:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:44:16 [snail-job-grpc-client-executor-127.0.0.1-685] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[685] message:[UNAVAILABLE: io exception] +2026-05-08 11:44:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:44:26 [snail-job-grpc-client-executor-127.0.0.1-686] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[686] message:[UNAVAILABLE: io exception] +2026-05-08 11:44:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:44:36 [snail-job-grpc-client-executor-127.0.0.1-688] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[688] message:[UNAVAILABLE: io exception] +2026-05-08 11:44:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:44:46 [snail-job-grpc-client-executor-127.0.0.1-689] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[689] message:[UNAVAILABLE: io exception] +2026-05-08 11:44:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:44:56 [snail-job-grpc-client-executor-127.0.0.1-690] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[690] message:[UNAVAILABLE: io exception] +2026-05-08 11:45:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:45:06 [snail-job-grpc-client-executor-127.0.0.1-691] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[691] message:[UNAVAILABLE: io exception] +2026-05-08 11:45:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:45:16 [snail-job-grpc-client-executor-127.0.0.1-692] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[692] message:[UNAVAILABLE: io exception] +2026-05-08 11:45:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:45:26 [snail-job-grpc-client-executor-127.0.0.1-693] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[693] message:[UNAVAILABLE: io exception] +2026-05-08 11:45:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:45:36 [snail-job-grpc-client-executor-127.0.0.1-695] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[694] message:[UNAVAILABLE: io exception] +2026-05-08 11:45:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:45:46 [snail-job-grpc-client-executor-127.0.0.1-696] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[696] message:[UNAVAILABLE: io exception] +2026-05-08 11:45:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:45:56 [snail-job-grpc-client-executor-127.0.0.1-697] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[697] message:[UNAVAILABLE: io exception] +2026-05-08 11:46:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:46:06 [snail-job-grpc-client-executor-127.0.0.1-698] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[698] message:[UNAVAILABLE: io exception] +2026-05-08 11:46:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:46:16 [snail-job-grpc-client-executor-127.0.0.1-699] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[699] message:[UNAVAILABLE: io exception] +2026-05-08 11:46:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:46:26 [snail-job-grpc-client-executor-127.0.0.1-700] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[700] message:[UNAVAILABLE: io exception] +2026-05-08 11:46:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:46:36 [snail-job-grpc-client-executor-127.0.0.1-702] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[701] message:[UNAVAILABLE: io exception] +2026-05-08 11:46:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:46:46 [snail-job-grpc-client-executor-127.0.0.1-703] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[703] message:[UNAVAILABLE: io exception] +2026-05-08 11:46:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:46:56 [snail-job-grpc-client-executor-127.0.0.1-704] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[704] message:[UNAVAILABLE: io exception] +2026-05-08 11:47:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:47:06 [snail-job-grpc-client-executor-127.0.0.1-705] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[705] message:[UNAVAILABLE: io exception] +2026-05-08 11:47:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:47:16 [snail-job-grpc-client-executor-127.0.0.1-706] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[706] message:[UNAVAILABLE: io exception] +2026-05-08 11:47:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:47:26 [snail-job-grpc-client-executor-127.0.0.1-707] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[707] message:[UNAVAILABLE: io exception] +2026-05-08 11:47:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:47:36 [snail-job-grpc-client-executor-127.0.0.1-709] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[708] message:[UNAVAILABLE: io exception] +2026-05-08 11:47:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:47:46 [snail-job-grpc-client-executor-127.0.0.1-710] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[710] message:[UNAVAILABLE: io exception] +2026-05-08 11:47:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:47:56 [snail-job-grpc-client-executor-127.0.0.1-711] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[711] message:[UNAVAILABLE: io exception] +2026-05-08 11:48:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:48:06 [snail-job-grpc-client-executor-127.0.0.1-712] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[712] message:[UNAVAILABLE: io exception] +2026-05-08 11:48:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:48:16 [snail-job-grpc-client-executor-127.0.0.1-713] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[713] message:[UNAVAILABLE: io exception] +2026-05-08 11:48:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:48:26 [snail-job-grpc-client-executor-127.0.0.1-714] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[714] message:[UNAVAILABLE: io exception] +2026-05-08 11:48:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:48:36 [snail-job-grpc-client-executor-127.0.0.1-716] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[715] message:[UNAVAILABLE: io exception] +2026-05-08 11:48:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:48:46 [snail-job-grpc-client-executor-127.0.0.1-717] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[717] message:[UNAVAILABLE: io exception] +2026-05-08 11:48:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:48:56 [snail-job-grpc-client-executor-127.0.0.1-718] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[718] message:[UNAVAILABLE: io exception] +2026-05-08 11:49:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:49:06 [snail-job-grpc-client-executor-127.0.0.1-719] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[719] message:[UNAVAILABLE: io exception] +2026-05-08 11:49:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:49:16 [snail-job-grpc-client-executor-127.0.0.1-720] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[720] message:[UNAVAILABLE: io exception] +2026-05-08 11:49:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:49:26 [snail-job-grpc-client-executor-127.0.0.1-721] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[721] message:[UNAVAILABLE: io exception] +2026-05-08 11:49:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:49:36 [snail-job-grpc-client-executor-127.0.0.1-722] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[723] message:[UNAVAILABLE: io exception] +2026-05-08 11:49:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:49:46 [snail-job-grpc-client-executor-127.0.0.1-724] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[724] message:[UNAVAILABLE: io exception] +2026-05-08 11:49:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:49:56 [snail-job-grpc-client-executor-127.0.0.1-725] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[725] message:[UNAVAILABLE: io exception] +2026-05-08 11:50:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:50:06 [snail-job-grpc-client-executor-127.0.0.1-726] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[726] message:[UNAVAILABLE: io exception] +2026-05-08 11:50:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:50:16 [snail-job-grpc-client-executor-127.0.0.1-727] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[727] message:[UNAVAILABLE: io exception] +2026-05-08 11:50:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:50:26 [snail-job-grpc-client-executor-127.0.0.1-728] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[728] message:[UNAVAILABLE: io exception] +2026-05-08 11:50:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:50:36 [snail-job-grpc-client-executor-127.0.0.1-730] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[730] message:[UNAVAILABLE: io exception] +2026-05-08 11:50:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:50:46 [snail-job-grpc-client-executor-127.0.0.1-731] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[731] message:[UNAVAILABLE: io exception] +2026-05-08 11:50:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:50:56 [snail-job-grpc-client-executor-127.0.0.1-732] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[732] message:[UNAVAILABLE: io exception] +2026-05-08 11:51:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:51:06 [snail-job-grpc-client-executor-127.0.0.1-733] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[733] message:[UNAVAILABLE: io exception] +2026-05-08 11:51:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:51:16 [snail-job-grpc-client-executor-127.0.0.1-734] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[734] message:[UNAVAILABLE: io exception] +2026-05-08 11:51:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:51:26 [snail-job-grpc-client-executor-127.0.0.1-735] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[735] message:[UNAVAILABLE: io exception] +2026-05-08 11:51:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:51:36 [snail-job-grpc-client-executor-127.0.0.1-736] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[737] message:[UNAVAILABLE: io exception] +2026-05-08 11:51:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:51:46 [snail-job-grpc-client-executor-127.0.0.1-738] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[738] message:[UNAVAILABLE: io exception] +2026-05-08 11:51:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:51:56 [snail-job-grpc-client-executor-127.0.0.1-739] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[739] message:[UNAVAILABLE: io exception] +2026-05-08 11:52:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:52:06 [snail-job-grpc-client-executor-127.0.0.1-740] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[740] message:[UNAVAILABLE: io exception] +2026-05-08 11:52:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:52:16 [snail-job-grpc-client-executor-127.0.0.1-741] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[741] message:[UNAVAILABLE: io exception] +2026-05-08 11:52:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:52:26 [snail-job-grpc-client-executor-127.0.0.1-742] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[742] message:[UNAVAILABLE: io exception] +2026-05-08 11:52:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:52:36 [snail-job-grpc-client-executor-127.0.0.1-744] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[743] message:[UNAVAILABLE: io exception] +2026-05-08 11:52:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:52:46 [snail-job-grpc-client-executor-127.0.0.1-745] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[745] message:[UNAVAILABLE: io exception] +2026-05-08 11:52:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:52:56 [snail-job-grpc-client-executor-127.0.0.1-746] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[746] message:[UNAVAILABLE: io exception] +2026-05-08 11:53:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:53:06 [snail-job-grpc-client-executor-127.0.0.1-747] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[747] message:[UNAVAILABLE: io exception] +2026-05-08 11:53:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:53:16 [snail-job-grpc-client-executor-127.0.0.1-748] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[748] message:[UNAVAILABLE: io exception] +2026-05-08 11:53:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:53:26 [snail-job-grpc-client-executor-127.0.0.1-749] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[749] message:[UNAVAILABLE: io exception] +2026-05-08 11:53:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:53:36 [snail-job-grpc-client-executor-127.0.0.1-750] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[751] message:[UNAVAILABLE: io exception] +2026-05-08 11:53:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:53:46 [snail-job-grpc-client-executor-127.0.0.1-752] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[752] message:[UNAVAILABLE: io exception] +2026-05-08 11:53:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:53:56 [snail-job-grpc-client-executor-127.0.0.1-753] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[753] message:[UNAVAILABLE: io exception] +2026-05-08 11:54:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:54:06 [snail-job-grpc-client-executor-127.0.0.1-754] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[754] message:[UNAVAILABLE: io exception] +2026-05-08 11:54:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:54:16 [snail-job-grpc-client-executor-127.0.0.1-755] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[755] message:[UNAVAILABLE: io exception] +2026-05-08 11:54:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:54:26 [snail-job-grpc-client-executor-127.0.0.1-756] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[756] message:[UNAVAILABLE: io exception] +2026-05-08 11:54:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:54:36 [snail-job-grpc-client-executor-127.0.0.1-757] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[757] message:[UNAVAILABLE: io exception] +2026-05-08 11:54:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:54:46 [snail-job-grpc-client-executor-127.0.0.1-759] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[759] message:[UNAVAILABLE: io exception] +2026-05-08 11:54:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:54:56 [snail-job-grpc-client-executor-127.0.0.1-760] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[760] message:[UNAVAILABLE: io exception] +2026-05-08 11:55:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:55:06 [snail-job-grpc-client-executor-127.0.0.1-761] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[761] message:[UNAVAILABLE: io exception] +2026-05-08 11:55:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:55:16 [snail-job-grpc-client-executor-127.0.0.1-762] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[762] message:[UNAVAILABLE: io exception] +2026-05-08 11:55:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:55:26 [snail-job-grpc-client-executor-127.0.0.1-763] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[763] message:[UNAVAILABLE: io exception] +2026-05-08 11:55:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:55:36 [snail-job-grpc-client-executor-127.0.0.1-764] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[764] message:[UNAVAILABLE: io exception] +2026-05-08 11:55:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:55:46 [snail-job-grpc-client-executor-127.0.0.1-766] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[766] message:[UNAVAILABLE: io exception] +2026-05-08 11:55:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:55:56 [snail-job-grpc-client-executor-127.0.0.1-767] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[767] message:[UNAVAILABLE: io exception] +2026-05-08 11:56:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:56:06 [snail-job-grpc-client-executor-127.0.0.1-768] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[768] message:[UNAVAILABLE: io exception] +2026-05-08 11:56:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:56:16 [snail-job-grpc-client-executor-127.0.0.1-769] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[769] message:[UNAVAILABLE: io exception] +2026-05-08 11:56:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:56:26 [snail-job-grpc-client-executor-127.0.0.1-770] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[770] message:[UNAVAILABLE: io exception] +2026-05-08 11:56:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:56:36 [snail-job-grpc-client-executor-127.0.0.1-771] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[772] message:[UNAVAILABLE: io exception] +2026-05-08 11:56:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:56:46 [snail-job-grpc-client-executor-127.0.0.1-773] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[773] message:[UNAVAILABLE: io exception] +2026-05-08 11:56:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:56:56 [snail-job-grpc-client-executor-127.0.0.1-774] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[774] message:[UNAVAILABLE: io exception] +2026-05-08 11:57:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:57:06 [snail-job-grpc-client-executor-127.0.0.1-775] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[775] message:[UNAVAILABLE: io exception] +2026-05-08 11:57:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:57:16 [snail-job-grpc-client-executor-127.0.0.1-776] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[776] message:[UNAVAILABLE: io exception] +2026-05-08 11:57:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:57:26 [snail-job-grpc-client-executor-127.0.0.1-777] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[777] message:[UNAVAILABLE: io exception] +2026-05-08 11:57:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:57:36 [snail-job-grpc-client-executor-127.0.0.1-779] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[778] message:[UNAVAILABLE: io exception] +2026-05-08 11:57:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:57:46 [snail-job-grpc-client-executor-127.0.0.1-780] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[780] message:[UNAVAILABLE: io exception] +2026-05-08 11:57:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:57:56 [snail-job-grpc-client-executor-127.0.0.1-781] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[781] message:[UNAVAILABLE: io exception] +2026-05-08 11:58:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:58:06 [snail-job-grpc-client-executor-127.0.0.1-782] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[782] message:[UNAVAILABLE: io exception] +2026-05-08 11:58:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:58:16 [snail-job-grpc-client-executor-127.0.0.1-783] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[783] message:[UNAVAILABLE: io exception] +2026-05-08 11:58:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:58:26 [snail-job-grpc-client-executor-127.0.0.1-784] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[784] message:[UNAVAILABLE: io exception] +2026-05-08 11:58:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:58:36 [snail-job-grpc-client-executor-127.0.0.1-785] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[785] message:[UNAVAILABLE: io exception] +2026-05-08 11:58:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:58:46 [snail-job-grpc-client-executor-127.0.0.1-787] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[787] message:[UNAVAILABLE: io exception] +2026-05-08 11:58:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:58:56 [snail-job-grpc-client-executor-127.0.0.1-788] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[788] message:[UNAVAILABLE: io exception] +2026-05-08 11:59:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:59:06 [snail-job-grpc-client-executor-127.0.0.1-789] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[789] message:[UNAVAILABLE: io exception] +2026-05-08 11:59:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:59:16 [snail-job-grpc-client-executor-127.0.0.1-790] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[790] message:[UNAVAILABLE: io exception] +2026-05-08 11:59:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:59:26 [snail-job-grpc-client-executor-127.0.0.1-791] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[791] message:[UNAVAILABLE: io exception] +2026-05-08 11:59:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:59:36 [snail-job-grpc-client-executor-127.0.0.1-792] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[792] message:[UNAVAILABLE: io exception] +2026-05-08 11:59:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:59:46 [snail-job-grpc-client-executor-127.0.0.1-794] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[794] message:[UNAVAILABLE: io exception] +2026-05-08 11:59:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 11:59:56 [snail-job-grpc-client-executor-127.0.0.1-795] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[795] message:[UNAVAILABLE: io exception] +2026-05-08 12:00:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 12:00:06 [snail-job-grpc-client-executor-127.0.0.1-796] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[796] message:[UNAVAILABLE: io exception] +2026-05-08 12:00:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 12:00:16 [snail-job-grpc-client-executor-127.0.0.1-797] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[797] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:05 [master:housekeeper] WARN com.zaxxer.hikari.pool.HikariPool - master - Thread starvation or clock leap detected (housekeeper delta=2h1m1s2ms829µs100ns). +2026-05-08 14:01:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:01:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:01:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[806] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[821] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[822] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[823] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[824] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[825] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[807] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[811] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[826] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[827] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[828] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[829] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[830] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[831] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[832] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[833] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[834] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[835] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[812] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[836] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[837] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[838] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[839] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[840] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[841] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[842] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[843] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[813] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[844] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[845] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[846] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[847] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[848] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[849] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[851] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[850] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[852] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[853] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[854] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[855] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[802] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[856] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[857] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[858] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[859] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[860] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[861] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[862] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[863] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[864] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[865] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[867] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[866] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[868] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[869] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[808] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[870] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[871] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[872] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[874] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[873] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[875] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[879] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[880] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[876] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[878] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[877] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[881] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[883] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[885] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[884] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[882] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[886] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[887] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[809] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[888] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[889] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[890] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[891] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[893] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[810] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[892] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[814] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[815] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[820] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[816] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[894] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[896] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[895] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[898] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[897] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[899] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[900] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[902] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[901] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[903] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[904] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[905] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[906] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[908] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[907] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[909] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[911] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[910] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[912] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[913] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[914] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[915] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[799] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[916] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[817] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[917] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[919] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[918] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[921] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[920] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[922] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[925] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[923] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[924] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[926] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[927] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[928] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[818] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[929] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[930] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[933] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[931] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[932] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[934] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[935] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[936] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[937] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[938] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[940] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[941] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[939] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[942] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[943] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[944] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[819] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[945] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[947] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[948] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[949] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[950] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[946] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[952] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[951] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[953] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[954] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[955] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[956] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[958] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[959] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[957] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[960] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[961] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[963] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[964] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[962] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[965] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[966] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[968] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[967] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[969] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[970] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[971] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[972] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[973] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[974] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[975] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[976] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[977] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[978] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[979] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[981] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[983] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[984] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[980] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[982] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[986] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[985] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[987] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[988] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[990] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[989] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[991] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[992] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[995] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[993] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[997] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[994] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[996] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1000] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[999] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[998] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1001] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1002] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1003] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[798] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1004] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1005] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:06 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1006] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1007] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1008] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1009] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[800] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1010] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1011] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1013] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1014] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1012] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1015] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1016] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1017] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1018] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1019] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1020] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1021] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1022] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1024] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1023] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1025] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1026] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1028] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1029] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1030] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1031] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1027] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1032] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1034] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1033] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1035] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1036] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1037] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1038] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1039] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1041] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1042] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1043] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1044] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1040] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1045] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1046] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1047] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1048] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1049] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1051] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1050] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1052] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1053] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1054] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1055] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1056] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1058] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1057] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1059] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1061] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1063] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1062] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1060] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1064] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1065] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1067] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1066] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1068] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1069] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1072] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1071] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1070] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1073] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1074] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1075] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1077] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1076] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1078] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1079] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1080] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1081] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1082] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1083] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[801] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1084] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1085] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1088] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1089] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1086] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1090] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1087] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1091] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1092] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1093] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1095] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1094] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1096] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1097] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1098] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1099] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1100] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1101] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1102] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1103] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1104] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1105] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1107] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1106] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1108] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1109] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1110] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1111] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1112] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1114] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1113] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1115] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1116] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1117] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1118] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1119] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1120] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1121] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1122] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1124] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1125] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1123] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1126] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1127] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1128] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1130] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1129] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1134] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1133] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1131] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1135] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1136] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1137] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1132] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1138] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1139] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1140] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1141] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1142] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[805] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1143] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1144] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1145] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1146] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1147] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1149] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1148] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1150] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1151] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1153] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1154] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1152] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1155] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1156] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1157] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1158] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1159] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1160] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1161] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1163] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1162] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1164] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1166] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1167] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1168] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1169] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1165] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1170] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1171] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1172] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1173] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1175] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1174] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1176] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1177] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1178] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1179] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1180] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1182] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1181] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1184] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1183] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1185] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1186] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1187] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1188] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1189] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1190] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1191] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1192] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1193] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1195] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1194] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1196] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1197] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1198] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1200] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1199] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1201] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1202] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1203] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1204] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1205] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1206] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1207] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1209] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1208] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1210] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1211] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1212] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1213] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1215] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1216] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1214] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1219] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1217] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1218] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1220] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1221] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1222] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1223] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1224] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1225] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1227] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1228] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1226] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1231] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1230] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1229] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1232] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1233] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1234] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1235] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1238] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1237] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1236] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1240] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1239] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1241] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1242] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1243] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1244] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1245] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1246] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1247] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1248] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1249] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1250] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1251] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1252] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1253] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1254] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1255] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1256] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1257] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1259] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1258] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1260] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1262] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1264] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1263] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1265] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1261] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1266] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1268] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1267] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1269] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1270] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1271] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1272] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1273] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1275] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1274] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1276] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1278] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1279] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1277] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1280] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1281] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1283] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1282] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1284] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1285] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1286] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1287] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1288] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1289] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1290] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1291] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1292] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1293] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1295] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1294] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1297] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1296] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1299] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1298] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1300] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1301] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1303] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1302] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1305] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1304] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1306] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1308] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1307] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1309] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1311] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1310] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1312] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1313] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1314] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1316] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1315] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1319] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1318] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1317] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1321] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1320] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1322] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1323] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1324] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1325] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1328] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1327] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1326] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1329] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1330] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1331] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1333] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1334] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1332] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1335] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1336] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1337] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1338] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1340] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1339] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1341] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1342] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1344] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1345] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1343] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1346] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1347] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1348] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1349] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1350] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1351] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1352] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1353] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1355] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1354] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1356] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1359] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1358] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1357] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1360] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1361] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1362] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1365] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1364] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1363] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1366] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1367] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1369] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1368] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1370] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1371] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1372] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1373] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1374] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1375] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1376] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1377] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1379] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1380] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1378] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1381] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1382] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1384] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1386] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1383] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1385] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1388] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1387] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1389] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1390] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1392] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1391] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1393] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1395] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1397] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1394] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1396] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1398] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1399] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1400] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1403] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1401] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1405] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1404] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1402] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1407] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1406] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1408] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1409] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1411] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1413] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1412] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1410] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1414] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1415] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1417] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1416] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1419] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1420] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1418] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1421] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1423] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1424] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1425] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1422] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1426] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1427] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1428] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1429] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1431] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1432] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1433] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1430] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1434] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1435] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1436] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1437] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1439] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1441] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1438] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1440] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1442] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1444] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1443] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[803] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1446] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1447] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1445] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1448] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[804] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1449] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1450] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1452] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1451] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1454] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1453] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1455] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1457] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1456] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1458] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1459] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1460] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1461] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1462] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1463] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1465] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1464] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1466] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1467] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1468] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1469] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1471] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1470] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1473] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1476] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1474] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1472] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1475] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1477] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1478] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1479] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1481] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1480] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1483] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1482] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1486] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1485] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1487] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1484] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1489] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1488] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1490] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1491] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1492] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1493] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1494] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1495] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1497] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1496] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1500] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1498] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1501] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1516] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1517] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1518] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1519] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1520] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1521] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-801] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1522] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1502] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1499] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1504] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1505] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1506] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1503] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1508] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1507] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1510] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1509] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1515] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1512] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-808] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1513] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1514] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:07 [snail-job-grpc-client-executor-127.0.0.1-811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1511] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:01:16 [snail-job-grpc-client-executor-127.0.0.1-814] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1523] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:01:26 [snail-job-grpc-client-executor-127.0.0.1-847] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1645] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:01:36 [snail-job-grpc-client-executor-127.0.0.1-848] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1646] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:01:46 [snail-job-grpc-client-executor-127.0.0.1-850] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1648] message:[UNAVAILABLE: io exception] +2026-05-08 14:01:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:01:56 [snail-job-grpc-client-executor-127.0.0.1-851] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1649] message:[UNAVAILABLE: io exception] +2026-05-08 14:02:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:02:06 [snail-job-grpc-client-executor-127.0.0.1-852] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1650] message:[UNAVAILABLE: io exception] +2026-05-08 14:02:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:02:16 [snail-job-grpc-client-executor-127.0.0.1-853] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1651] message:[UNAVAILABLE: io exception] +2026-05-08 14:02:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:02:26 [snail-job-grpc-client-executor-127.0.0.1-854] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1652] message:[UNAVAILABLE: io exception] +2026-05-08 14:02:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:02:36 [snail-job-grpc-client-executor-127.0.0.1-856] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1654] message:[UNAVAILABLE: io exception] +2026-05-08 14:02:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:02:46 [snail-job-grpc-client-executor-127.0.0.1-857] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1655] message:[UNAVAILABLE: io exception] +2026-05-08 14:02:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:02:56 [snail-job-grpc-client-executor-127.0.0.1-858] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1656] message:[UNAVAILABLE: io exception] +2026-05-08 14:03:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:03:06 [snail-job-grpc-client-executor-127.0.0.1-859] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1657] message:[UNAVAILABLE: io exception] +2026-05-08 14:03:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:03:16 [snail-job-grpc-client-executor-127.0.0.1-860] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1658] message:[UNAVAILABLE: io exception] +2026-05-08 14:03:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:03:26 [snail-job-grpc-client-executor-127.0.0.1-861] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1659] message:[UNAVAILABLE: io exception] +2026-05-08 14:03:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:03:36 [snail-job-grpc-client-executor-127.0.0.1-862] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1661] message:[UNAVAILABLE: io exception] +2026-05-08 14:03:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:03:46 [snail-job-grpc-client-executor-127.0.0.1-864] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1662] message:[UNAVAILABLE: io exception] +2026-05-08 14:03:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:03:56 [snail-job-grpc-client-executor-127.0.0.1-865] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1663] message:[UNAVAILABLE: io exception] +2026-05-08 14:04:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:04:06 [snail-job-grpc-client-executor-127.0.0.1-866] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1664] message:[UNAVAILABLE: io exception] +2026-05-08 14:04:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:04:16 [snail-job-grpc-client-executor-127.0.0.1-867] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1665] message:[UNAVAILABLE: io exception] +2026-05-08 14:04:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:04:26 [snail-job-grpc-client-executor-127.0.0.1-868] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1666] message:[UNAVAILABLE: io exception] +2026-05-08 14:04:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:04:36 [snail-job-grpc-client-executor-127.0.0.1-870] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1667] message:[UNAVAILABLE: io exception] +2026-05-08 14:04:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:04:46 [snail-job-grpc-client-executor-127.0.0.1-871] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1669] message:[UNAVAILABLE: io exception] +2026-05-08 14:04:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:04:56 [snail-job-grpc-client-executor-127.0.0.1-872] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1670] message:[UNAVAILABLE: io exception] +2026-05-08 14:05:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:05:06 [snail-job-grpc-client-executor-127.0.0.1-873] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1671] message:[UNAVAILABLE: io exception] +2026-05-08 14:05:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:05:16 [snail-job-grpc-client-executor-127.0.0.1-874] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1672] message:[UNAVAILABLE: io exception] +2026-05-08 14:05:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:05:26 [snail-job-grpc-client-executor-127.0.0.1-875] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1673] message:[UNAVAILABLE: io exception] +2026-05-08 14:05:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:05:36 [snail-job-grpc-client-executor-127.0.0.1-876] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1675] message:[UNAVAILABLE: io exception] +2026-05-08 14:05:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:05:46 [snail-job-grpc-client-executor-127.0.0.1-878] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1676] message:[UNAVAILABLE: io exception] +2026-05-08 14:05:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:05:56 [snail-job-grpc-client-executor-127.0.0.1-879] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1677] message:[UNAVAILABLE: io exception] +2026-05-08 14:06:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:06:06 [snail-job-grpc-client-executor-127.0.0.1-880] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1678] message:[UNAVAILABLE: io exception] +2026-05-08 14:06:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:06:16 [snail-job-grpc-client-executor-127.0.0.1-881] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1679] message:[UNAVAILABLE: io exception] +2026-05-08 14:06:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:06:26 [snail-job-grpc-client-executor-127.0.0.1-882] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1680] message:[UNAVAILABLE: io exception] +2026-05-08 14:06:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:06:36 [snail-job-grpc-client-executor-127.0.0.1-883] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1682] message:[UNAVAILABLE: io exception] +2026-05-08 14:06:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:06:46 [snail-job-grpc-client-executor-127.0.0.1-885] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1683] message:[UNAVAILABLE: io exception] +2026-05-08 14:06:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:06:56 [snail-job-grpc-client-executor-127.0.0.1-886] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1684] message:[UNAVAILABLE: io exception] +2026-05-08 14:07:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:07:06 [snail-job-grpc-client-executor-127.0.0.1-887] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1685] message:[UNAVAILABLE: io exception] +2026-05-08 14:07:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:07:16 [snail-job-grpc-client-executor-127.0.0.1-888] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1686] message:[UNAVAILABLE: io exception] +2026-05-08 14:07:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:07:26 [snail-job-grpc-client-executor-127.0.0.1-889] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1687] message:[UNAVAILABLE: io exception] +2026-05-08 14:07:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:07:36 [snail-job-grpc-client-executor-127.0.0.1-891] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1688] message:[UNAVAILABLE: io exception] +2026-05-08 14:07:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:07:46 [snail-job-grpc-client-executor-127.0.0.1-892] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1690] message:[UNAVAILABLE: io exception] +2026-05-08 14:07:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:07:56 [snail-job-grpc-client-executor-127.0.0.1-893] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1691] message:[UNAVAILABLE: io exception] +2026-05-08 14:08:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:08:06 [snail-job-grpc-client-executor-127.0.0.1-894] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1692] message:[UNAVAILABLE: io exception] +2026-05-08 14:08:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:08:16 [snail-job-grpc-client-executor-127.0.0.1-895] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1693] message:[UNAVAILABLE: io exception] +2026-05-08 14:08:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:08:26 [snail-job-grpc-client-executor-127.0.0.1-896] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1694] message:[UNAVAILABLE: io exception] +2026-05-08 14:08:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:08:36 [snail-job-grpc-client-executor-127.0.0.1-898] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1695] message:[UNAVAILABLE: io exception] +2026-05-08 14:08:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:08:46 [snail-job-grpc-client-executor-127.0.0.1-899] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1697] message:[UNAVAILABLE: io exception] +2026-05-08 14:08:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:08:56 [snail-job-grpc-client-executor-127.0.0.1-900] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1698] message:[UNAVAILABLE: io exception] +2026-05-08 14:09:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:09:06 [snail-job-grpc-client-executor-127.0.0.1-901] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1699] message:[UNAVAILABLE: io exception] +2026-05-08 14:09:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:09:16 [snail-job-grpc-client-executor-127.0.0.1-902] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1700] message:[UNAVAILABLE: io exception] +2026-05-08 14:09:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:09:26 [snail-job-grpc-client-executor-127.0.0.1-903] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1701] message:[UNAVAILABLE: io exception] +2026-05-08 14:09:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:09:36 [snail-job-grpc-client-executor-127.0.0.1-904] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1702] message:[UNAVAILABLE: io exception] +2026-05-08 14:09:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:09:46 [snail-job-grpc-client-executor-127.0.0.1-906] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1704] message:[UNAVAILABLE: io exception] +2026-05-08 14:09:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:09:56 [snail-job-grpc-client-executor-127.0.0.1-907] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1705] message:[UNAVAILABLE: io exception] +2026-05-08 14:10:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:10:06 [snail-job-grpc-client-executor-127.0.0.1-908] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1706] message:[UNAVAILABLE: io exception] +2026-05-08 14:10:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:10:16 [snail-job-grpc-client-executor-127.0.0.1-909] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1707] message:[UNAVAILABLE: io exception] +2026-05-08 14:10:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:10:26 [snail-job-grpc-client-executor-127.0.0.1-910] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1708] message:[UNAVAILABLE: io exception] +2026-05-08 14:10:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:10:36 [snail-job-grpc-client-executor-127.0.0.1-912] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1710] message:[UNAVAILABLE: io exception] +2026-05-08 14:10:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:10:46 [snail-job-grpc-client-executor-127.0.0.1-913] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1711] message:[UNAVAILABLE: io exception] +2026-05-08 14:10:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:10:56 [snail-job-grpc-client-executor-127.0.0.1-914] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1712] message:[UNAVAILABLE: io exception] +2026-05-08 14:11:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:11:06 [snail-job-grpc-client-executor-127.0.0.1-915] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1713] message:[UNAVAILABLE: io exception] +2026-05-08 14:11:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:11:16 [snail-job-grpc-client-executor-127.0.0.1-916] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1714] message:[UNAVAILABLE: io exception] +2026-05-08 14:11:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:11:26 [snail-job-grpc-client-executor-127.0.0.1-917] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1715] message:[UNAVAILABLE: io exception] +2026-05-08 14:11:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:11:36 [snail-job-grpc-client-executor-127.0.0.1-918] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1717] message:[UNAVAILABLE: io exception] +2026-05-08 14:11:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:11:46 [snail-job-grpc-client-executor-127.0.0.1-920] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1718] message:[UNAVAILABLE: io exception] +2026-05-08 14:11:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:11:56 [snail-job-grpc-client-executor-127.0.0.1-921] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1719] message:[UNAVAILABLE: io exception] +2026-05-08 14:12:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:12:06 [snail-job-grpc-client-executor-127.0.0.1-922] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1720] message:[UNAVAILABLE: io exception] +2026-05-08 14:12:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:12:16 [snail-job-grpc-client-executor-127.0.0.1-923] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1721] message:[UNAVAILABLE: io exception] +2026-05-08 14:12:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:12:26 [snail-job-grpc-client-executor-127.0.0.1-924] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1722] message:[UNAVAILABLE: io exception] +2026-05-08 14:12:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:12:36 [snail-job-grpc-client-executor-127.0.0.1-926] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1723] message:[UNAVAILABLE: io exception] +2026-05-08 14:12:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:12:46 [snail-job-grpc-client-executor-127.0.0.1-927] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1725] message:[UNAVAILABLE: io exception] +2026-05-08 14:12:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:12:56 [snail-job-grpc-client-executor-127.0.0.1-928] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1726] message:[UNAVAILABLE: io exception] +2026-05-08 14:13:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:13:06 [snail-job-grpc-client-executor-127.0.0.1-929] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1727] message:[UNAVAILABLE: io exception] +2026-05-08 14:13:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:13:16 [snail-job-grpc-client-executor-127.0.0.1-930] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1728] message:[UNAVAILABLE: io exception] +2026-05-08 14:13:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:13:26 [snail-job-grpc-client-executor-127.0.0.1-931] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1729] message:[UNAVAILABLE: io exception] +2026-05-08 14:13:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:13:36 [snail-job-grpc-client-executor-127.0.0.1-932] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1730] message:[UNAVAILABLE: io exception] +2026-05-08 14:13:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:13:46 [snail-job-grpc-client-executor-127.0.0.1-934] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1732] message:[UNAVAILABLE: io exception] +2026-05-08 14:13:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:13:56 [snail-job-grpc-client-executor-127.0.0.1-935] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1733] message:[UNAVAILABLE: io exception] +2026-05-08 14:14:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:14:06 [snail-job-grpc-client-executor-127.0.0.1-936] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1734] message:[UNAVAILABLE: io exception] +2026-05-08 14:14:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:14:16 [snail-job-grpc-client-executor-127.0.0.1-937] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1735] message:[UNAVAILABLE: io exception] +2026-05-08 14:14:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:14:26 [snail-job-grpc-client-executor-127.0.0.1-938] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1736] message:[UNAVAILABLE: io exception] +2026-05-08 14:14:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:14:36 [snail-job-grpc-client-executor-127.0.0.1-939] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1737] message:[UNAVAILABLE: io exception] +2026-05-08 14:14:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:14:46 [snail-job-grpc-client-executor-127.0.0.1-941] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1739] message:[UNAVAILABLE: io exception] +2026-05-08 14:14:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:14:56 [snail-job-grpc-client-executor-127.0.0.1-942] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1740] message:[UNAVAILABLE: io exception] +2026-05-08 14:15:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:15:06 [snail-job-grpc-client-executor-127.0.0.1-943] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1741] message:[UNAVAILABLE: io exception] +2026-05-08 14:15:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:15:16 [snail-job-grpc-client-executor-127.0.0.1-944] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1742] message:[UNAVAILABLE: io exception] +2026-05-08 14:15:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:15:26 [snail-job-grpc-client-executor-127.0.0.1-945] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1743] message:[UNAVAILABLE: io exception] +2026-05-08 14:15:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:15:36 [snail-job-grpc-client-executor-127.0.0.1-946] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1744] message:[UNAVAILABLE: io exception] +2026-05-08 14:15:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:15:46 [snail-job-grpc-client-executor-127.0.0.1-948] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1746] message:[UNAVAILABLE: io exception] +2026-05-08 14:15:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:15:56 [snail-job-grpc-client-executor-127.0.0.1-949] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1747] message:[UNAVAILABLE: io exception] +2026-05-08 14:16:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:16:06 [snail-job-grpc-client-executor-127.0.0.1-950] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1748] message:[UNAVAILABLE: io exception] +2026-05-08 14:16:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:16:16 [snail-job-grpc-client-executor-127.0.0.1-951] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1749] message:[UNAVAILABLE: io exception] +2026-05-08 14:16:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:16:26 [snail-job-grpc-client-executor-127.0.0.1-952] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1750] message:[UNAVAILABLE: io exception] +2026-05-08 14:16:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:16:36 [snail-job-grpc-client-executor-127.0.0.1-954] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1752] message:[UNAVAILABLE: io exception] +2026-05-08 14:16:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:16:46 [snail-job-grpc-client-executor-127.0.0.1-955] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1753] message:[UNAVAILABLE: io exception] +2026-05-08 14:16:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:16:56 [snail-job-grpc-client-executor-127.0.0.1-956] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1754] message:[UNAVAILABLE: io exception] +2026-05-08 14:17:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:17:06 [snail-job-grpc-client-executor-127.0.0.1-957] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1755] message:[UNAVAILABLE: io exception] +2026-05-08 14:17:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:17:16 [snail-job-grpc-client-executor-127.0.0.1-958] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1756] message:[UNAVAILABLE: io exception] +2026-05-08 14:17:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:17:26 [snail-job-grpc-client-executor-127.0.0.1-959] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1757] message:[UNAVAILABLE: io exception] +2026-05-08 14:17:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:17:36 [snail-job-grpc-client-executor-127.0.0.1-961] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1759] message:[UNAVAILABLE: io exception] +2026-05-08 14:17:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:17:46 [snail-job-grpc-client-executor-127.0.0.1-962] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1760] message:[UNAVAILABLE: io exception] +2026-05-08 14:17:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:17:56 [snail-job-grpc-client-executor-127.0.0.1-963] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1761] message:[UNAVAILABLE: io exception] +2026-05-08 14:18:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:18:06 [snail-job-grpc-client-executor-127.0.0.1-964] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1762] message:[UNAVAILABLE: io exception] +2026-05-08 14:18:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:18:16 [snail-job-grpc-client-executor-127.0.0.1-965] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1763] message:[UNAVAILABLE: io exception] +2026-05-08 14:18:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:18:26 [snail-job-grpc-client-executor-127.0.0.1-966] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1764] message:[UNAVAILABLE: io exception] +2026-05-08 14:18:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:18:36 [snail-job-grpc-client-executor-127.0.0.1-967] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1766] message:[UNAVAILABLE: io exception] +2026-05-08 14:18:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:18:46 [snail-job-grpc-client-executor-127.0.0.1-969] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1767] message:[UNAVAILABLE: io exception] +2026-05-08 14:18:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:18:56 [snail-job-grpc-client-executor-127.0.0.1-970] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1768] message:[UNAVAILABLE: io exception] +2026-05-08 14:19:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:19:06 [snail-job-grpc-client-executor-127.0.0.1-971] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1769] message:[UNAVAILABLE: io exception] +2026-05-08 14:19:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:19:16 [snail-job-grpc-client-executor-127.0.0.1-972] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1770] message:[UNAVAILABLE: io exception] +2026-05-08 14:19:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:19:26 [snail-job-grpc-client-executor-127.0.0.1-973] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1771] message:[UNAVAILABLE: io exception] +2026-05-08 14:19:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:19:36 [snail-job-grpc-client-executor-127.0.0.1-974] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1773] message:[UNAVAILABLE: io exception] +2026-05-08 14:19:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:19:46 [snail-job-grpc-client-executor-127.0.0.1-976] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1774] message:[UNAVAILABLE: io exception] +2026-05-08 14:19:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:19:56 [snail-job-grpc-client-executor-127.0.0.1-977] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1775] message:[UNAVAILABLE: io exception] +2026-05-08 14:20:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:20:06 [snail-job-grpc-client-executor-127.0.0.1-978] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1776] message:[UNAVAILABLE: io exception] +2026-05-08 14:20:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:20:16 [snail-job-grpc-client-executor-127.0.0.1-979] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1777] message:[UNAVAILABLE: io exception] +2026-05-08 14:20:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:20:26 [snail-job-grpc-client-executor-127.0.0.1-980] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1778] message:[UNAVAILABLE: io exception] +2026-05-08 14:20:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:20:36 [snail-job-grpc-client-executor-127.0.0.1-981] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1779] message:[UNAVAILABLE: io exception] +2026-05-08 14:20:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:20:46 [snail-job-grpc-client-executor-127.0.0.1-983] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1781] message:[UNAVAILABLE: io exception] +2026-05-08 14:20:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:20:56 [snail-job-grpc-client-executor-127.0.0.1-984] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1782] message:[UNAVAILABLE: io exception] +2026-05-08 14:21:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:21:06 [snail-job-grpc-client-executor-127.0.0.1-985] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1783] message:[UNAVAILABLE: io exception] +2026-05-08 14:21:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:21:16 [snail-job-grpc-client-executor-127.0.0.1-986] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1784] message:[UNAVAILABLE: io exception] +2026-05-08 14:21:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:21:26 [snail-job-grpc-client-executor-127.0.0.1-987] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1785] message:[UNAVAILABLE: io exception] +2026-05-08 14:21:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:21:36 [snail-job-grpc-client-executor-127.0.0.1-988] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1786] message:[UNAVAILABLE: io exception] +2026-05-08 14:21:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:21:46 [snail-job-grpc-client-executor-127.0.0.1-990] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1788] message:[UNAVAILABLE: io exception] +2026-05-08 14:21:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:21:56 [snail-job-grpc-client-executor-127.0.0.1-991] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1789] message:[UNAVAILABLE: io exception] +2026-05-08 14:22:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:22:06 [snail-job-grpc-client-executor-127.0.0.1-992] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1790] message:[UNAVAILABLE: io exception] +2026-05-08 14:22:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:22:16 [snail-job-grpc-client-executor-127.0.0.1-993] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1791] message:[UNAVAILABLE: io exception] +2026-05-08 14:22:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:22:26 [snail-job-grpc-client-executor-127.0.0.1-994] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1792] message:[UNAVAILABLE: io exception] +2026-05-08 14:22:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:22:36 [snail-job-grpc-client-executor-127.0.0.1-996] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1793] message:[UNAVAILABLE: io exception] +2026-05-08 14:22:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:22:46 [snail-job-grpc-client-executor-127.0.0.1-997] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1795] message:[UNAVAILABLE: io exception] +2026-05-08 14:22:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:22:56 [snail-job-grpc-client-executor-127.0.0.1-998] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1796] message:[UNAVAILABLE: io exception] +2026-05-08 14:23:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:23:06 [snail-job-grpc-client-executor-127.0.0.1-999] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1797] message:[UNAVAILABLE: io exception] +2026-05-08 14:23:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:23:16 [snail-job-grpc-client-executor-127.0.0.1-1000] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1798] message:[UNAVAILABLE: io exception] +2026-05-08 14:23:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:23:26 [snail-job-grpc-client-executor-127.0.0.1-1001] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1799] message:[UNAVAILABLE: io exception] +2026-05-08 14:23:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:23:36 [snail-job-grpc-client-executor-127.0.0.1-1003] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1800] message:[UNAVAILABLE: io exception] +2026-05-08 14:23:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:23:46 [snail-job-grpc-client-executor-127.0.0.1-1004] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1802] message:[UNAVAILABLE: io exception] +2026-05-08 14:23:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:23:56 [snail-job-grpc-client-executor-127.0.0.1-1005] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1803] message:[UNAVAILABLE: io exception] +2026-05-08 14:24:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:24:06 [snail-job-grpc-client-executor-127.0.0.1-1006] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1804] message:[UNAVAILABLE: io exception] +2026-05-08 14:24:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:24:16 [snail-job-grpc-client-executor-127.0.0.1-1007] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1805] message:[UNAVAILABLE: io exception] +2026-05-08 14:24:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:24:26 [snail-job-grpc-client-executor-127.0.0.1-1008] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1806] message:[UNAVAILABLE: io exception] +2026-05-08 14:24:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:24:36 [snail-job-grpc-client-executor-127.0.0.1-1009] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1808] message:[UNAVAILABLE: io exception] +2026-05-08 14:24:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:24:46 [snail-job-grpc-client-executor-127.0.0.1-1011] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1809] message:[UNAVAILABLE: io exception] +2026-05-08 14:24:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:24:56 [snail-job-grpc-client-executor-127.0.0.1-1012] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1810] message:[UNAVAILABLE: io exception] +2026-05-08 14:25:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:25:06 [snail-job-grpc-client-executor-127.0.0.1-1013] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1811] message:[UNAVAILABLE: io exception] +2026-05-08 14:25:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:25:16 [snail-job-grpc-client-executor-127.0.0.1-1014] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1812] message:[UNAVAILABLE: io exception] +2026-05-08 14:25:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:25:26 [snail-job-grpc-client-executor-127.0.0.1-1015] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1813] message:[UNAVAILABLE: io exception] +2026-05-08 14:25:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:25:36 [snail-job-grpc-client-executor-127.0.0.1-1016] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1814] message:[UNAVAILABLE: io exception] +2026-05-08 14:25:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:25:46 [snail-job-grpc-client-executor-127.0.0.1-1018] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1816] message:[UNAVAILABLE: io exception] +2026-05-08 14:25:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:25:56 [snail-job-grpc-client-executor-127.0.0.1-1019] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1817] message:[UNAVAILABLE: io exception] +2026-05-08 14:26:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:26:06 [snail-job-grpc-client-executor-127.0.0.1-1020] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1818] message:[UNAVAILABLE: io exception] +2026-05-08 14:26:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:26:16 [snail-job-grpc-client-executor-127.0.0.1-1021] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1819] message:[UNAVAILABLE: io exception] +2026-05-08 14:26:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:26:26 [snail-job-grpc-client-executor-127.0.0.1-1022] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1820] message:[UNAVAILABLE: io exception] +2026-05-08 14:26:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:26:36 [snail-job-grpc-client-executor-127.0.0.1-1024] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1822] message:[UNAVAILABLE: io exception] +2026-05-08 14:26:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:26:46 [snail-job-grpc-client-executor-127.0.0.1-1025] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1823] message:[UNAVAILABLE: io exception] +2026-05-08 14:26:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:26:56 [snail-job-grpc-client-executor-127.0.0.1-1026] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1824] message:[UNAVAILABLE: io exception] +2026-05-08 14:27:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:27:06 [snail-job-grpc-client-executor-127.0.0.1-1027] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1825] message:[UNAVAILABLE: io exception] +2026-05-08 14:27:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:27:16 [snail-job-grpc-client-executor-127.0.0.1-1028] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1826] message:[UNAVAILABLE: io exception] +2026-05-08 14:27:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:27:26 [snail-job-grpc-client-executor-127.0.0.1-1029] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1827] message:[UNAVAILABLE: io exception] +2026-05-08 14:27:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:27:36 [snail-job-grpc-client-executor-127.0.0.1-1030] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1829] message:[UNAVAILABLE: io exception] +2026-05-08 14:27:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:27:46 [snail-job-grpc-client-executor-127.0.0.1-1032] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1830] message:[UNAVAILABLE: io exception] +2026-05-08 14:27:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:27:56 [snail-job-grpc-client-executor-127.0.0.1-1033] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1831] message:[UNAVAILABLE: io exception] +2026-05-08 14:28:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:28:06 [snail-job-grpc-client-executor-127.0.0.1-1034] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1832] message:[UNAVAILABLE: io exception] +2026-05-08 14:28:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:28:16 [snail-job-grpc-client-executor-127.0.0.1-1035] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1833] message:[UNAVAILABLE: io exception] +2026-05-08 14:28:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:28:26 [snail-job-grpc-client-executor-127.0.0.1-1036] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1834] message:[UNAVAILABLE: io exception] +2026-05-08 14:28:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:28:36 [snail-job-grpc-client-executor-127.0.0.1-1038] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1835] message:[UNAVAILABLE: io exception] +2026-05-08 14:28:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:28:46 [snail-job-grpc-client-executor-127.0.0.1-1039] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1837] message:[UNAVAILABLE: io exception] +2026-05-08 14:28:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:28:56 [snail-job-grpc-client-executor-127.0.0.1-1040] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1838] message:[UNAVAILABLE: io exception] +2026-05-08 14:29:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:29:06 [snail-job-grpc-client-executor-127.0.0.1-1041] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1839] message:[UNAVAILABLE: io exception] +2026-05-08 14:29:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:29:16 [snail-job-grpc-client-executor-127.0.0.1-1042] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1840] message:[UNAVAILABLE: io exception] +2026-05-08 14:29:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:29:26 [snail-job-grpc-client-executor-127.0.0.1-1043] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1841] message:[UNAVAILABLE: io exception] +2026-05-08 14:29:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:29:36 [snail-job-grpc-client-executor-127.0.0.1-1045] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1842] message:[UNAVAILABLE: io exception] +2026-05-08 14:29:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:29:46 [snail-job-grpc-client-executor-127.0.0.1-1046] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1844] message:[UNAVAILABLE: io exception] +2026-05-08 14:29:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:29:56 [snail-job-grpc-client-executor-127.0.0.1-1047] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1845] message:[UNAVAILABLE: io exception] +2026-05-08 14:30:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:30:06 [snail-job-grpc-client-executor-127.0.0.1-1048] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1846] message:[UNAVAILABLE: io exception] +2026-05-08 14:30:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:30:16 [snail-job-grpc-client-executor-127.0.0.1-1049] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1847] message:[UNAVAILABLE: io exception] +2026-05-08 14:30:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:30:26 [snail-job-grpc-client-executor-127.0.0.1-1050] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1848] message:[UNAVAILABLE: io exception] +2026-05-08 14:30:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:30:36 [snail-job-grpc-client-executor-127.0.0.1-1052] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1849] message:[UNAVAILABLE: io exception] +2026-05-08 14:30:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:30:46 [snail-job-grpc-client-executor-127.0.0.1-1053] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1851] message:[UNAVAILABLE: io exception] +2026-05-08 14:30:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:30:56 [snail-job-grpc-client-executor-127.0.0.1-1054] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1852] message:[UNAVAILABLE: io exception] +2026-05-08 14:31:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:31:06 [snail-job-grpc-client-executor-127.0.0.1-1055] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1853] message:[UNAVAILABLE: io exception] +2026-05-08 14:31:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:31:16 [snail-job-grpc-client-executor-127.0.0.1-1056] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1854] message:[UNAVAILABLE: io exception] +2026-05-08 14:31:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:31:26 [snail-job-grpc-client-executor-127.0.0.1-1057] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1855] message:[UNAVAILABLE: io exception] +2026-05-08 14:31:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:31:36 [snail-job-grpc-client-executor-127.0.0.1-1058] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1857] message:[UNAVAILABLE: io exception] +2026-05-08 14:31:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:31:46 [snail-job-grpc-client-executor-127.0.0.1-1060] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1858] message:[UNAVAILABLE: io exception] +2026-05-08 14:31:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:31:56 [snail-job-grpc-client-executor-127.0.0.1-1061] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1859] message:[UNAVAILABLE: io exception] +2026-05-08 14:32:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:32:06 [snail-job-grpc-client-executor-127.0.0.1-1062] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1860] message:[UNAVAILABLE: io exception] +2026-05-08 14:32:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:32:16 [snail-job-grpc-client-executor-127.0.0.1-1063] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1861] message:[UNAVAILABLE: io exception] +2026-05-08 14:32:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:32:26 [snail-job-grpc-client-executor-127.0.0.1-1064] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1862] message:[UNAVAILABLE: io exception] +2026-05-08 14:32:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:32:36 [snail-job-grpc-client-executor-127.0.0.1-1065] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1864] message:[UNAVAILABLE: io exception] +2026-05-08 14:32:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:32:46 [snail-job-grpc-client-executor-127.0.0.1-1067] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1865] message:[UNAVAILABLE: io exception] +2026-05-08 14:32:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:32:56 [snail-job-grpc-client-executor-127.0.0.1-1068] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1866] message:[UNAVAILABLE: io exception] +2026-05-08 14:33:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:33:06 [snail-job-grpc-client-executor-127.0.0.1-1069] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1867] message:[UNAVAILABLE: io exception] +2026-05-08 14:33:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:33:16 [snail-job-grpc-client-executor-127.0.0.1-1070] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1868] message:[UNAVAILABLE: io exception] +2026-05-08 14:33:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:33:26 [snail-job-grpc-client-executor-127.0.0.1-1071] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1869] message:[UNAVAILABLE: io exception] +2026-05-08 14:33:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:33:36 [snail-job-grpc-client-executor-127.0.0.1-1072] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1870] message:[UNAVAILABLE: io exception] +2026-05-08 14:33:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:33:46 [snail-job-grpc-client-executor-127.0.0.1-1074] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1872] message:[UNAVAILABLE: io exception] +2026-05-08 14:33:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:33:56 [snail-job-grpc-client-executor-127.0.0.1-1075] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1873] message:[UNAVAILABLE: io exception] +2026-05-08 14:34:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:34:06 [snail-job-grpc-client-executor-127.0.0.1-1076] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1874] message:[UNAVAILABLE: io exception] +2026-05-08 14:34:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:34:16 [snail-job-grpc-client-executor-127.0.0.1-1077] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1875] message:[UNAVAILABLE: io exception] +2026-05-08 14:34:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:34:26 [snail-job-grpc-client-executor-127.0.0.1-1078] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1876] message:[UNAVAILABLE: io exception] +2026-05-08 14:34:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:34:36 [snail-job-grpc-client-executor-127.0.0.1-1080] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1877] message:[UNAVAILABLE: io exception] +2026-05-08 14:34:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:34:46 [snail-job-grpc-client-executor-127.0.0.1-1081] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1879] message:[UNAVAILABLE: io exception] +2026-05-08 14:34:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:34:56 [snail-job-grpc-client-executor-127.0.0.1-1082] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1880] message:[UNAVAILABLE: io exception] +2026-05-08 14:35:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:35:06 [snail-job-grpc-client-executor-127.0.0.1-1083] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1881] message:[UNAVAILABLE: io exception] +2026-05-08 14:35:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:35:16 [snail-job-grpc-client-executor-127.0.0.1-1084] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1882] message:[UNAVAILABLE: io exception] +2026-05-08 14:35:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:35:26 [snail-job-grpc-client-executor-127.0.0.1-1085] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1883] message:[UNAVAILABLE: io exception] +2026-05-08 14:35:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:35:36 [snail-job-grpc-client-executor-127.0.0.1-1086] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1885] message:[UNAVAILABLE: io exception] +2026-05-08 14:35:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:35:46 [snail-job-grpc-client-executor-127.0.0.1-1088] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1886] message:[UNAVAILABLE: io exception] +2026-05-08 14:35:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:35:56 [snail-job-grpc-client-executor-127.0.0.1-1089] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1887] message:[UNAVAILABLE: io exception] +2026-05-08 14:36:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:36:06 [snail-job-grpc-client-executor-127.0.0.1-1090] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1888] message:[UNAVAILABLE: io exception] +2026-05-08 14:36:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:36:16 [snail-job-grpc-client-executor-127.0.0.1-1091] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1889] message:[UNAVAILABLE: io exception] +2026-05-08 14:36:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:36:26 [snail-job-grpc-client-executor-127.0.0.1-1092] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1890] message:[UNAVAILABLE: io exception] +2026-05-08 14:36:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:36:36 [snail-job-grpc-client-executor-127.0.0.1-1094] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1891] message:[UNAVAILABLE: io exception] +2026-05-08 14:36:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:36:46 [snail-job-grpc-client-executor-127.0.0.1-1095] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1893] message:[UNAVAILABLE: io exception] +2026-05-08 14:36:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:36:56 [snail-job-grpc-client-executor-127.0.0.1-1096] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1894] message:[UNAVAILABLE: io exception] +2026-05-08 14:37:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:37:06 [snail-job-grpc-client-executor-127.0.0.1-1097] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1895] message:[UNAVAILABLE: io exception] +2026-05-08 14:37:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:37:16 [snail-job-grpc-client-executor-127.0.0.1-1098] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1896] message:[UNAVAILABLE: io exception] +2026-05-08 14:37:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:37:26 [snail-job-grpc-client-executor-127.0.0.1-1099] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1897] message:[UNAVAILABLE: io exception] +2026-05-08 14:37:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:37:36 [snail-job-grpc-client-executor-127.0.0.1-1101] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1898] message:[UNAVAILABLE: io exception] +2026-05-08 14:37:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:37:46 [snail-job-grpc-client-executor-127.0.0.1-1102] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1900] message:[UNAVAILABLE: io exception] +2026-05-08 14:37:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:37:56 [snail-job-grpc-client-executor-127.0.0.1-1103] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1901] message:[UNAVAILABLE: io exception] +2026-05-08 14:38:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:38:06 [snail-job-grpc-client-executor-127.0.0.1-1104] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1902] message:[UNAVAILABLE: io exception] +2026-05-08 14:38:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:38:16 [snail-job-grpc-client-executor-127.0.0.1-1105] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1903] message:[UNAVAILABLE: io exception] +2026-05-08 14:38:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:38:26 [snail-job-grpc-client-executor-127.0.0.1-1106] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1904] message:[UNAVAILABLE: io exception] +2026-05-08 14:38:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:38:36 [snail-job-grpc-client-executor-127.0.0.1-1107] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1906] message:[UNAVAILABLE: io exception] +2026-05-08 14:38:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:38:46 [snail-job-grpc-client-executor-127.0.0.1-1109] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1907] message:[UNAVAILABLE: io exception] +2026-05-08 14:38:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:38:56 [snail-job-grpc-client-executor-127.0.0.1-1110] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1908] message:[UNAVAILABLE: io exception] +2026-05-08 14:39:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:39:06 [snail-job-grpc-client-executor-127.0.0.1-1111] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1909] message:[UNAVAILABLE: io exception] +2026-05-08 14:39:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:39:16 [snail-job-grpc-client-executor-127.0.0.1-1112] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1910] message:[UNAVAILABLE: io exception] +2026-05-08 14:39:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:39:26 [snail-job-grpc-client-executor-127.0.0.1-1113] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1911] message:[UNAVAILABLE: io exception] +2026-05-08 14:39:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:39:36 [snail-job-grpc-client-executor-127.0.0.1-1114] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1913] message:[UNAVAILABLE: io exception] +2026-05-08 14:39:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:39:46 [snail-job-grpc-client-executor-127.0.0.1-1116] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1914] message:[UNAVAILABLE: io exception] +2026-05-08 14:39:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:39:56 [snail-job-grpc-client-executor-127.0.0.1-1117] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1915] message:[UNAVAILABLE: io exception] +2026-05-08 14:40:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:40:06 [snail-job-grpc-client-executor-127.0.0.1-1118] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1916] message:[UNAVAILABLE: io exception] +2026-05-08 14:40:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:40:16 [snail-job-grpc-client-executor-127.0.0.1-1119] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1917] message:[UNAVAILABLE: io exception] +2026-05-08 14:40:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:40:26 [snail-job-grpc-client-executor-127.0.0.1-1120] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1918] message:[UNAVAILABLE: io exception] +2026-05-08 14:40:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:40:36 [snail-job-grpc-client-executor-127.0.0.1-1121] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1920] message:[UNAVAILABLE: io exception] +2026-05-08 14:40:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:40:46 [snail-job-grpc-client-executor-127.0.0.1-1123] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1921] message:[UNAVAILABLE: io exception] +2026-05-08 14:40:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:40:56 [snail-job-grpc-client-executor-127.0.0.1-1124] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1922] message:[UNAVAILABLE: io exception] +2026-05-08 14:41:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:41:06 [snail-job-grpc-client-executor-127.0.0.1-1125] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1923] message:[UNAVAILABLE: io exception] +2026-05-08 14:41:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:41:16 [snail-job-grpc-client-executor-127.0.0.1-1126] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1924] message:[UNAVAILABLE: io exception] +2026-05-08 14:41:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:41:26 [snail-job-grpc-client-executor-127.0.0.1-1127] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1925] message:[UNAVAILABLE: io exception] +2026-05-08 14:41:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:41:36 [snail-job-grpc-client-executor-127.0.0.1-1128] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1927] message:[UNAVAILABLE: io exception] +2026-05-08 14:41:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:41:46 [snail-job-grpc-client-executor-127.0.0.1-1130] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1928] message:[UNAVAILABLE: io exception] +2026-05-08 14:41:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:41:56 [snail-job-grpc-client-executor-127.0.0.1-1131] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1929] message:[UNAVAILABLE: io exception] +2026-05-08 14:42:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:42:06 [snail-job-grpc-client-executor-127.0.0.1-1132] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1930] message:[UNAVAILABLE: io exception] +2026-05-08 14:42:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:42:16 [snail-job-grpc-client-executor-127.0.0.1-1133] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1931] message:[UNAVAILABLE: io exception] +2026-05-08 14:42:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:42:26 [snail-job-grpc-client-executor-127.0.0.1-1134] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1932] message:[UNAVAILABLE: io exception] +2026-05-08 14:42:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:42:36 [snail-job-grpc-client-executor-127.0.0.1-1135] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1934] message:[UNAVAILABLE: io exception] +2026-05-08 14:42:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:42:46 [snail-job-grpc-client-executor-127.0.0.1-1137] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1935] message:[UNAVAILABLE: io exception] +2026-05-08 14:42:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:42:56 [snail-job-grpc-client-executor-127.0.0.1-1138] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1936] message:[UNAVAILABLE: io exception] +2026-05-08 14:43:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:43:06 [snail-job-grpc-client-executor-127.0.0.1-1139] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1937] message:[UNAVAILABLE: io exception] +2026-05-08 14:43:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:43:16 [snail-job-grpc-client-executor-127.0.0.1-1140] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1938] message:[UNAVAILABLE: io exception] +2026-05-08 14:43:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:43:26 [snail-job-grpc-client-executor-127.0.0.1-1141] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1939] message:[UNAVAILABLE: io exception] +2026-05-08 14:43:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:43:36 [snail-job-grpc-client-executor-127.0.0.1-1143] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1940] message:[UNAVAILABLE: io exception] +2026-05-08 14:43:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:43:46 [snail-job-grpc-client-executor-127.0.0.1-1144] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1942] message:[UNAVAILABLE: io exception] +2026-05-08 14:43:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:43:56 [snail-job-grpc-client-executor-127.0.0.1-1145] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1943] message:[UNAVAILABLE: io exception] +2026-05-08 14:44:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:44:06 [snail-job-grpc-client-executor-127.0.0.1-1146] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1944] message:[UNAVAILABLE: io exception] +2026-05-08 14:44:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:44:16 [snail-job-grpc-client-executor-127.0.0.1-1147] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1945] message:[UNAVAILABLE: io exception] +2026-05-08 14:44:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:44:26 [snail-job-grpc-client-executor-127.0.0.1-1148] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1946] message:[UNAVAILABLE: io exception] +2026-05-08 14:44:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:44:36 [snail-job-grpc-client-executor-127.0.0.1-1150] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1947] message:[UNAVAILABLE: io exception] +2026-05-08 14:44:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:44:46 [snail-job-grpc-client-executor-127.0.0.1-1151] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1949] message:[UNAVAILABLE: io exception] +2026-05-08 14:44:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:44:56 [snail-job-grpc-client-executor-127.0.0.1-1152] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1950] message:[UNAVAILABLE: io exception] +2026-05-08 14:45:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:45:06 [snail-job-grpc-client-executor-127.0.0.1-1153] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1951] message:[UNAVAILABLE: io exception] +2026-05-08 14:45:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:45:16 [snail-job-grpc-client-executor-127.0.0.1-1154] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1952] message:[UNAVAILABLE: io exception] +2026-05-08 14:45:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:45:26 [snail-job-grpc-client-executor-127.0.0.1-1155] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1953] message:[UNAVAILABLE: io exception] +2026-05-08 14:45:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:45:36 [snail-job-grpc-client-executor-127.0.0.1-1156] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1955] message:[UNAVAILABLE: io exception] +2026-05-08 14:45:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:45:46 [snail-job-grpc-client-executor-127.0.0.1-1158] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1956] message:[UNAVAILABLE: io exception] +2026-05-08 14:45:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:45:56 [snail-job-grpc-client-executor-127.0.0.1-1159] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1957] message:[UNAVAILABLE: io exception] +2026-05-08 14:46:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:46:06 [snail-job-grpc-client-executor-127.0.0.1-1160] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1958] message:[UNAVAILABLE: io exception] +2026-05-08 14:46:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:46:16 [snail-job-grpc-client-executor-127.0.0.1-1161] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1959] message:[UNAVAILABLE: io exception] +2026-05-08 14:46:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:46:26 [snail-job-grpc-client-executor-127.0.0.1-1162] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1960] message:[UNAVAILABLE: io exception] +2026-05-08 14:46:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:46:36 [snail-job-grpc-client-executor-127.0.0.1-1164] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1961] message:[UNAVAILABLE: io exception] +2026-05-08 14:46:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:46:46 [snail-job-grpc-client-executor-127.0.0.1-1165] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1963] message:[UNAVAILABLE: io exception] +2026-05-08 14:46:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:46:56 [snail-job-grpc-client-executor-127.0.0.1-1166] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1964] message:[UNAVAILABLE: io exception] +2026-05-08 14:47:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:47:06 [snail-job-grpc-client-executor-127.0.0.1-1167] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1965] message:[UNAVAILABLE: io exception] +2026-05-08 14:47:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:47:16 [snail-job-grpc-client-executor-127.0.0.1-1168] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1966] message:[UNAVAILABLE: io exception] +2026-05-08 14:47:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:47:26 [snail-job-grpc-client-executor-127.0.0.1-1169] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1967] message:[UNAVAILABLE: io exception] +2026-05-08 14:47:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:47:36 [snail-job-grpc-client-executor-127.0.0.1-1170] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1969] message:[UNAVAILABLE: io exception] +2026-05-08 14:47:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:47:46 [snail-job-grpc-client-executor-127.0.0.1-1172] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1970] message:[UNAVAILABLE: io exception] +2026-05-08 14:47:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:47:56 [snail-job-grpc-client-executor-127.0.0.1-1173] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1971] message:[UNAVAILABLE: io exception] +2026-05-08 14:48:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:48:06 [snail-job-grpc-client-executor-127.0.0.1-1174] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1972] message:[UNAVAILABLE: io exception] +2026-05-08 14:48:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:48:16 [snail-job-grpc-client-executor-127.0.0.1-1175] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1973] message:[UNAVAILABLE: io exception] +2026-05-08 14:48:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:48:26 [snail-job-grpc-client-executor-127.0.0.1-1176] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1974] message:[UNAVAILABLE: io exception] +2026-05-08 14:48:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:48:36 [snail-job-grpc-client-executor-127.0.0.1-1177] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1976] message:[UNAVAILABLE: io exception] +2026-05-08 14:48:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:48:46 [snail-job-grpc-client-executor-127.0.0.1-1179] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1977] message:[UNAVAILABLE: io exception] +2026-05-08 14:48:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:48:56 [snail-job-grpc-client-executor-127.0.0.1-1180] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1978] message:[UNAVAILABLE: io exception] +2026-05-08 14:49:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:49:06 [snail-job-grpc-client-executor-127.0.0.1-1181] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1979] message:[UNAVAILABLE: io exception] +2026-05-08 14:49:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:49:16 [snail-job-grpc-client-executor-127.0.0.1-1182] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1980] message:[UNAVAILABLE: io exception] +2026-05-08 14:49:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:49:26 [snail-job-grpc-client-executor-127.0.0.1-1183] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1981] message:[UNAVAILABLE: io exception] +2026-05-08 14:49:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:49:36 [snail-job-grpc-client-executor-127.0.0.1-1185] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1982] message:[UNAVAILABLE: io exception] +2026-05-08 14:49:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:49:46 [snail-job-grpc-client-executor-127.0.0.1-1186] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1984] message:[UNAVAILABLE: io exception] +2026-05-08 14:49:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:49:56 [snail-job-grpc-client-executor-127.0.0.1-1187] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1985] message:[UNAVAILABLE: io exception] +2026-05-08 14:50:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:50:06 [snail-job-grpc-client-executor-127.0.0.1-1188] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1986] message:[UNAVAILABLE: io exception] +2026-05-08 14:50:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:50:16 [snail-job-grpc-client-executor-127.0.0.1-1189] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1987] message:[UNAVAILABLE: io exception] +2026-05-08 14:50:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:50:26 [snail-job-grpc-client-executor-127.0.0.1-1190] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1988] message:[UNAVAILABLE: io exception] +2026-05-08 14:50:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:50:36 [snail-job-grpc-client-executor-127.0.0.1-1192] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1989] message:[UNAVAILABLE: io exception] +2026-05-08 14:50:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:50:46 [snail-job-grpc-client-executor-127.0.0.1-1193] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1991] message:[UNAVAILABLE: io exception] +2026-05-08 14:50:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:50:56 [snail-job-grpc-client-executor-127.0.0.1-1194] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1992] message:[UNAVAILABLE: io exception] +2026-05-08 14:51:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:51:06 [snail-job-grpc-client-executor-127.0.0.1-1195] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1993] message:[UNAVAILABLE: io exception] +2026-05-08 14:51:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:51:16 [snail-job-grpc-client-executor-127.0.0.1-1196] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1994] message:[UNAVAILABLE: io exception] +2026-05-08 14:51:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:51:26 [snail-job-grpc-client-executor-127.0.0.1-1197] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1995] message:[UNAVAILABLE: io exception] +2026-05-08 14:51:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:51:36 [snail-job-grpc-client-executor-127.0.0.1-1198] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1997] message:[UNAVAILABLE: io exception] +2026-05-08 14:51:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:51:46 [snail-job-grpc-client-executor-127.0.0.1-1200] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1998] message:[UNAVAILABLE: io exception] +2026-05-08 14:51:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:51:56 [snail-job-grpc-client-executor-127.0.0.1-1201] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[1999] message:[UNAVAILABLE: io exception] +2026-05-08 14:52:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:52:06 [snail-job-grpc-client-executor-127.0.0.1-1202] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2000] message:[UNAVAILABLE: io exception] +2026-05-08 14:52:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:52:16 [snail-job-grpc-client-executor-127.0.0.1-1203] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2001] message:[UNAVAILABLE: io exception] +2026-05-08 14:52:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:52:26 [snail-job-grpc-client-executor-127.0.0.1-1204] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2002] message:[UNAVAILABLE: io exception] +2026-05-08 14:52:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:52:36 [snail-job-grpc-client-executor-127.0.0.1-1205] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2003] message:[UNAVAILABLE: io exception] +2026-05-08 14:52:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:52:46 [snail-job-grpc-client-executor-127.0.0.1-1207] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2005] message:[UNAVAILABLE: io exception] +2026-05-08 14:52:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:52:56 [snail-job-grpc-client-executor-127.0.0.1-1208] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2006] message:[UNAVAILABLE: io exception] +2026-05-08 14:53:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:53:06 [snail-job-grpc-client-executor-127.0.0.1-1209] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2007] message:[UNAVAILABLE: io exception] +2026-05-08 14:53:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:53:16 [snail-job-grpc-client-executor-127.0.0.1-1210] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2008] message:[UNAVAILABLE: io exception] +2026-05-08 14:53:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:53:26 [snail-job-grpc-client-executor-127.0.0.1-1211] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2009] message:[UNAVAILABLE: io exception] +2026-05-08 14:53:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:53:36 [snail-job-grpc-client-executor-127.0.0.1-1213] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2011] message:[UNAVAILABLE: io exception] +2026-05-08 14:53:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:53:46 [snail-job-grpc-client-executor-127.0.0.1-1214] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2012] message:[UNAVAILABLE: io exception] +2026-05-08 14:53:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:53:56 [snail-job-grpc-client-executor-127.0.0.1-1215] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2013] message:[UNAVAILABLE: io exception] +2026-05-08 14:54:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:54:06 [snail-job-grpc-client-executor-127.0.0.1-1216] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2014] message:[UNAVAILABLE: io exception] +2026-05-08 14:54:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:54:16 [snail-job-grpc-client-executor-127.0.0.1-1217] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2015] message:[UNAVAILABLE: io exception] +2026-05-08 14:54:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:54:26 [snail-job-grpc-client-executor-127.0.0.1-1218] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2016] message:[UNAVAILABLE: io exception] +2026-05-08 14:54:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:54:36 [snail-job-grpc-client-executor-127.0.0.1-1219] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2018] message:[UNAVAILABLE: io exception] +2026-05-08 14:54:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:54:46 [snail-job-grpc-client-executor-127.0.0.1-1221] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2019] message:[UNAVAILABLE: io exception] +2026-05-08 14:54:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:54:56 [snail-job-grpc-client-executor-127.0.0.1-1222] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2020] message:[UNAVAILABLE: io exception] +2026-05-08 14:55:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:55:06 [snail-job-grpc-client-executor-127.0.0.1-1223] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2021] message:[UNAVAILABLE: io exception] +2026-05-08 14:55:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:55:16 [snail-job-grpc-client-executor-127.0.0.1-1224] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2022] message:[UNAVAILABLE: io exception] +2026-05-08 14:55:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:55:26 [snail-job-grpc-client-executor-127.0.0.1-1225] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2023] message:[UNAVAILABLE: io exception] +2026-05-08 14:55:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:55:36 [snail-job-grpc-client-executor-127.0.0.1-1226] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2025] message:[UNAVAILABLE: io exception] +2026-05-08 14:55:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:55:46 [snail-job-grpc-client-executor-127.0.0.1-1228] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2026] message:[UNAVAILABLE: io exception] +2026-05-08 14:55:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:55:56 [snail-job-grpc-client-executor-127.0.0.1-1229] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2027] message:[UNAVAILABLE: io exception] +2026-05-08 14:56:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:56:06 [snail-job-grpc-client-executor-127.0.0.1-1230] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2028] message:[UNAVAILABLE: io exception] +2026-05-08 14:56:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:56:16 [snail-job-grpc-client-executor-127.0.0.1-1231] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2029] message:[UNAVAILABLE: io exception] +2026-05-08 14:56:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:56:26 [snail-job-grpc-client-executor-127.0.0.1-1232] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2030] message:[UNAVAILABLE: io exception] +2026-05-08 14:56:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:56:36 [snail-job-grpc-client-executor-127.0.0.1-1233] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2031] message:[UNAVAILABLE: io exception] +2026-05-08 14:56:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:56:46 [snail-job-grpc-client-executor-127.0.0.1-1235] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2033] message:[UNAVAILABLE: io exception] +2026-05-08 14:56:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:56:56 [snail-job-grpc-client-executor-127.0.0.1-1236] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2034] message:[UNAVAILABLE: io exception] +2026-05-08 14:57:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:57:06 [snail-job-grpc-client-executor-127.0.0.1-1237] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2035] message:[UNAVAILABLE: io exception] +2026-05-08 14:57:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:57:16 [snail-job-grpc-client-executor-127.0.0.1-1238] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2036] message:[UNAVAILABLE: io exception] +2026-05-08 14:57:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:57:26 [snail-job-grpc-client-executor-127.0.0.1-1239] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2037] message:[UNAVAILABLE: io exception] +2026-05-08 14:57:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:57:36 [snail-job-grpc-client-executor-127.0.0.1-1240] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2038] message:[UNAVAILABLE: io exception] +2026-05-08 14:57:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:57:46 [snail-job-grpc-client-executor-127.0.0.1-1242] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2040] message:[UNAVAILABLE: io exception] +2026-05-08 14:57:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:57:56 [snail-job-grpc-client-executor-127.0.0.1-1243] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2041] message:[UNAVAILABLE: io exception] +2026-05-08 14:58:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:58:06 [snail-job-grpc-client-executor-127.0.0.1-1244] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2042] message:[UNAVAILABLE: io exception] +2026-05-08 14:58:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:58:16 [snail-job-grpc-client-executor-127.0.0.1-1245] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2043] message:[UNAVAILABLE: io exception] +2026-05-08 14:58:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:58:26 [snail-job-grpc-client-executor-127.0.0.1-1246] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2044] message:[UNAVAILABLE: io exception] +2026-05-08 14:58:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:58:36 [snail-job-grpc-client-executor-127.0.0.1-1247] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2046] message:[UNAVAILABLE: io exception] +2026-05-08 14:58:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:58:46 [snail-job-grpc-client-executor-127.0.0.1-1249] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2047] message:[UNAVAILABLE: io exception] +2026-05-08 14:58:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:58:56 [snail-job-grpc-client-executor-127.0.0.1-1250] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2048] message:[UNAVAILABLE: io exception] +2026-05-08 14:59:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:59:06 [snail-job-grpc-client-executor-127.0.0.1-1251] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2049] message:[UNAVAILABLE: io exception] +2026-05-08 14:59:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:59:16 [snail-job-grpc-client-executor-127.0.0.1-1252] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2050] message:[UNAVAILABLE: io exception] +2026-05-08 14:59:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:59:26 [snail-job-grpc-client-executor-127.0.0.1-1253] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2051] message:[UNAVAILABLE: io exception] +2026-05-08 14:59:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:59:36 [snail-job-grpc-client-executor-127.0.0.1-1255] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2053] message:[UNAVAILABLE: io exception] +2026-05-08 14:59:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:59:46 [snail-job-grpc-client-executor-127.0.0.1-1256] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2054] message:[UNAVAILABLE: io exception] +2026-05-08 14:59:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 14:59:56 [snail-job-grpc-client-executor-127.0.0.1-1257] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2055] message:[UNAVAILABLE: io exception] +2026-05-08 15:00:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:00:06 [snail-job-grpc-client-executor-127.0.0.1-1258] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2056] message:[UNAVAILABLE: io exception] +2026-05-08 15:00:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:00:16 [snail-job-grpc-client-executor-127.0.0.1-1259] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2057] message:[UNAVAILABLE: io exception] +2026-05-08 15:00:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:00:26 [snail-job-grpc-client-executor-127.0.0.1-1260] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2058] message:[UNAVAILABLE: io exception] +2026-05-08 15:00:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:00:36 [snail-job-grpc-client-executor-127.0.0.1-1261] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2059] message:[UNAVAILABLE: io exception] +2026-05-08 15:00:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:00:46 [snail-job-grpc-client-executor-127.0.0.1-1263] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2061] message:[UNAVAILABLE: io exception] +2026-05-08 15:00:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:00:56 [snail-job-grpc-client-executor-127.0.0.1-1264] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2062] message:[UNAVAILABLE: io exception] +2026-05-08 15:01:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:01:06 [snail-job-grpc-client-executor-127.0.0.1-1265] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2063] message:[UNAVAILABLE: io exception] +2026-05-08 15:01:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:01:16 [snail-job-grpc-client-executor-127.0.0.1-1266] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2064] message:[UNAVAILABLE: io exception] +2026-05-08 15:01:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:01:26 [snail-job-grpc-client-executor-127.0.0.1-1267] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2065] message:[UNAVAILABLE: io exception] +2026-05-08 15:01:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:01:36 [snail-job-grpc-client-executor-127.0.0.1-1268] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2066] message:[UNAVAILABLE: io exception] +2026-05-08 15:01:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:01:46 [snail-job-grpc-client-executor-127.0.0.1-1270] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2068] message:[UNAVAILABLE: io exception] +2026-05-08 15:01:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:01:56 [snail-job-grpc-client-executor-127.0.0.1-1271] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2069] message:[UNAVAILABLE: io exception] +2026-05-08 15:02:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:02:06 [snail-job-grpc-client-executor-127.0.0.1-1272] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2070] message:[UNAVAILABLE: io exception] +2026-05-08 15:02:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:02:16 [snail-job-grpc-client-executor-127.0.0.1-1273] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2071] message:[UNAVAILABLE: io exception] +2026-05-08 15:02:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:02:26 [snail-job-grpc-client-executor-127.0.0.1-1274] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2072] message:[UNAVAILABLE: io exception] +2026-05-08 15:02:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:02:36 [snail-job-grpc-client-executor-127.0.0.1-1275] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2073] message:[UNAVAILABLE: io exception] +2026-05-08 15:02:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:02:46 [snail-job-grpc-client-executor-127.0.0.1-1277] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2075] message:[UNAVAILABLE: io exception] +2026-05-08 15:02:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:02:56 [snail-job-grpc-client-executor-127.0.0.1-1278] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2076] message:[UNAVAILABLE: io exception] +2026-05-08 15:03:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:03:06 [snail-job-grpc-client-executor-127.0.0.1-1279] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2077] message:[UNAVAILABLE: io exception] +2026-05-08 15:03:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:03:16 [snail-job-grpc-client-executor-127.0.0.1-1280] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2078] message:[UNAVAILABLE: io exception] +2026-05-08 15:03:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:03:26 [snail-job-grpc-client-executor-127.0.0.1-1281] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2079] message:[UNAVAILABLE: io exception] +2026-05-08 15:03:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:03:36 [snail-job-grpc-client-executor-127.0.0.1-1282] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2080] message:[UNAVAILABLE: io exception] +2026-05-08 15:03:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:03:46 [snail-job-grpc-client-executor-127.0.0.1-1284] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2082] message:[UNAVAILABLE: io exception] +2026-05-08 15:03:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:03:56 [snail-job-grpc-client-executor-127.0.0.1-1285] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2083] message:[UNAVAILABLE: io exception] +2026-05-08 15:04:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:04:06 [snail-job-grpc-client-executor-127.0.0.1-1286] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2084] message:[UNAVAILABLE: io exception] +2026-05-08 15:04:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:04:16 [snail-job-grpc-client-executor-127.0.0.1-1287] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2085] message:[UNAVAILABLE: io exception] +2026-05-08 15:04:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:04:26 [snail-job-grpc-client-executor-127.0.0.1-1288] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2086] message:[UNAVAILABLE: io exception] +2026-05-08 15:04:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:04:36 [snail-job-grpc-client-executor-127.0.0.1-1289] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2087] message:[UNAVAILABLE: io exception] +2026-05-08 15:04:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:04:46 [snail-job-grpc-client-executor-127.0.0.1-1291] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2089] message:[UNAVAILABLE: io exception] +2026-05-08 15:04:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:04:56 [snail-job-grpc-client-executor-127.0.0.1-1292] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2090] message:[UNAVAILABLE: io exception] +2026-05-08 15:05:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:05:06 [snail-job-grpc-client-executor-127.0.0.1-1293] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2091] message:[UNAVAILABLE: io exception] +2026-05-08 15:05:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:05:16 [snail-job-grpc-client-executor-127.0.0.1-1294] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2092] message:[UNAVAILABLE: io exception] +2026-05-08 15:05:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:05:26 [snail-job-grpc-client-executor-127.0.0.1-1295] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2093] message:[UNAVAILABLE: io exception] +2026-05-08 15:05:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:05:36 [snail-job-grpc-client-executor-127.0.0.1-1296] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2094] message:[UNAVAILABLE: io exception] +2026-05-08 15:05:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:05:46 [snail-job-grpc-client-executor-127.0.0.1-1298] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2096] message:[UNAVAILABLE: io exception] +2026-05-08 15:05:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:05:56 [snail-job-grpc-client-executor-127.0.0.1-1299] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2097] message:[UNAVAILABLE: io exception] +2026-05-08 15:06:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:06:06 [snail-job-grpc-client-executor-127.0.0.1-1300] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2098] message:[UNAVAILABLE: io exception] +2026-05-08 15:06:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:06:16 [snail-job-grpc-client-executor-127.0.0.1-1301] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2099] message:[UNAVAILABLE: io exception] +2026-05-08 15:06:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:06:26 [snail-job-grpc-client-executor-127.0.0.1-1302] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2100] message:[UNAVAILABLE: io exception] +2026-05-08 15:06:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:06:36 [snail-job-grpc-client-executor-127.0.0.1-1303] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2102] message:[UNAVAILABLE: io exception] +2026-05-08 15:06:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:06:46 [snail-job-grpc-client-executor-127.0.0.1-1305] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2103] message:[UNAVAILABLE: io exception] +2026-05-08 15:06:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:06:56 [snail-job-grpc-client-executor-127.0.0.1-1306] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2104] message:[UNAVAILABLE: io exception] +2026-05-08 15:07:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:07:06 [snail-job-grpc-client-executor-127.0.0.1-1307] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2105] message:[UNAVAILABLE: io exception] +2026-05-08 15:07:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:07:16 [snail-job-grpc-client-executor-127.0.0.1-1308] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2106] message:[UNAVAILABLE: io exception] +2026-05-08 15:07:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:07:26 [snail-job-grpc-client-executor-127.0.0.1-1309] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2107] message:[UNAVAILABLE: io exception] +2026-05-08 15:07:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:07:36 [snail-job-grpc-client-executor-127.0.0.1-1310] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2108] message:[UNAVAILABLE: io exception] +2026-05-08 15:07:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:07:46 [snail-job-grpc-client-executor-127.0.0.1-1312] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2110] message:[UNAVAILABLE: io exception] +2026-05-08 15:07:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:07:56 [snail-job-grpc-client-executor-127.0.0.1-1313] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2111] message:[UNAVAILABLE: io exception] +2026-05-08 15:08:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:08:06 [snail-job-grpc-client-executor-127.0.0.1-1314] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2112] message:[UNAVAILABLE: io exception] +2026-05-08 15:08:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:08:16 [snail-job-grpc-client-executor-127.0.0.1-1315] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2113] message:[UNAVAILABLE: io exception] +2026-05-08 15:08:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:08:26 [snail-job-grpc-client-executor-127.0.0.1-1316] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2114] message:[UNAVAILABLE: io exception] +2026-05-08 15:08:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:08:36 [snail-job-grpc-client-executor-127.0.0.1-1318] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2116] message:[UNAVAILABLE: io exception] +2026-05-08 15:08:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:08:46 [snail-job-grpc-client-executor-127.0.0.1-1319] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2117] message:[UNAVAILABLE: io exception] +2026-05-08 15:08:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:08:56 [snail-job-grpc-client-executor-127.0.0.1-1320] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2118] message:[UNAVAILABLE: io exception] +2026-05-08 15:09:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:09:06 [snail-job-grpc-client-executor-127.0.0.1-1321] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2119] message:[UNAVAILABLE: io exception] +2026-05-08 15:09:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:09:16 [snail-job-grpc-client-executor-127.0.0.1-1322] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2120] message:[UNAVAILABLE: io exception] +2026-05-08 15:09:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:09:26 [snail-job-grpc-client-executor-127.0.0.1-1323] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2121] message:[UNAVAILABLE: io exception] +2026-05-08 15:09:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:09:36 [snail-job-grpc-client-executor-127.0.0.1-1325] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2123] message:[UNAVAILABLE: io exception] +2026-05-08 15:09:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:09:46 [snail-job-grpc-client-executor-127.0.0.1-1326] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2124] message:[UNAVAILABLE: io exception] +2026-05-08 15:09:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:09:56 [snail-job-grpc-client-executor-127.0.0.1-1327] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2125] message:[UNAVAILABLE: io exception] +2026-05-08 15:10:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:10:06 [snail-job-grpc-client-executor-127.0.0.1-1328] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2126] message:[UNAVAILABLE: io exception] +2026-05-08 15:10:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:10:16 [snail-job-grpc-client-executor-127.0.0.1-1329] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2127] message:[UNAVAILABLE: io exception] +2026-05-08 15:10:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:10:26 [snail-job-grpc-client-executor-127.0.0.1-1330] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2128] message:[UNAVAILABLE: io exception] +2026-05-08 15:10:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:10:36 [snail-job-grpc-client-executor-127.0.0.1-1332] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2129] message:[UNAVAILABLE: io exception] +2026-05-08 15:10:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:10:46 [snail-job-grpc-client-executor-127.0.0.1-1333] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2131] message:[UNAVAILABLE: io exception] +2026-05-08 15:10:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:10:56 [snail-job-grpc-client-executor-127.0.0.1-1334] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2132] message:[UNAVAILABLE: io exception] +2026-05-08 15:11:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:11:06 [snail-job-grpc-client-executor-127.0.0.1-1335] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2133] message:[UNAVAILABLE: io exception] +2026-05-08 15:11:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:11:16 [snail-job-grpc-client-executor-127.0.0.1-1336] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2134] message:[UNAVAILABLE: io exception] +2026-05-08 15:11:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:11:26 [snail-job-grpc-client-executor-127.0.0.1-1337] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2135] message:[UNAVAILABLE: io exception] +2026-05-08 15:11:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:11:36 [snail-job-grpc-client-executor-127.0.0.1-1338] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2137] message:[UNAVAILABLE: io exception] +2026-05-08 15:11:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:11:46 [snail-job-grpc-client-executor-127.0.0.1-1340] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2138] message:[UNAVAILABLE: io exception] +2026-05-08 15:11:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:11:56 [snail-job-grpc-client-executor-127.0.0.1-1341] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2139] message:[UNAVAILABLE: io exception] +2026-05-08 15:12:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:12:06 [snail-job-grpc-client-executor-127.0.0.1-1342] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2140] message:[UNAVAILABLE: io exception] +2026-05-08 15:12:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:12:16 [snail-job-grpc-client-executor-127.0.0.1-1343] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2141] message:[UNAVAILABLE: io exception] +2026-05-08 15:12:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:12:26 [snail-job-grpc-client-executor-127.0.0.1-1344] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2142] message:[UNAVAILABLE: io exception] +2026-05-08 15:12:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:12:36 [snail-job-grpc-client-executor-127.0.0.1-1346] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2144] message:[UNAVAILABLE: io exception] +2026-05-08 15:12:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:12:46 [snail-job-grpc-client-executor-127.0.0.1-1347] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2145] message:[UNAVAILABLE: io exception] +2026-05-08 15:12:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:12:56 [snail-job-grpc-client-executor-127.0.0.1-1348] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2146] message:[UNAVAILABLE: io exception] +2026-05-08 15:13:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:13:06 [snail-job-grpc-client-executor-127.0.0.1-1349] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2147] message:[UNAVAILABLE: io exception] +2026-05-08 15:13:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:13:16 [snail-job-grpc-client-executor-127.0.0.1-1350] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2148] message:[UNAVAILABLE: io exception] +2026-05-08 15:13:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:13:26 [snail-job-grpc-client-executor-127.0.0.1-1351] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2149] message:[UNAVAILABLE: io exception] +2026-05-08 15:13:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:13:36 [snail-job-grpc-client-executor-127.0.0.1-1352] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2150] message:[UNAVAILABLE: io exception] +2026-05-08 15:13:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:13:46 [snail-job-grpc-client-executor-127.0.0.1-1354] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2152] message:[UNAVAILABLE: io exception] +2026-05-08 15:13:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:13:56 [snail-job-grpc-client-executor-127.0.0.1-1355] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2153] message:[UNAVAILABLE: io exception] +2026-05-08 15:14:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:14:06 [snail-job-grpc-client-executor-127.0.0.1-1356] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2154] message:[UNAVAILABLE: io exception] +2026-05-08 15:14:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:14:16 [snail-job-grpc-client-executor-127.0.0.1-1357] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2155] message:[UNAVAILABLE: io exception] +2026-05-08 15:14:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:14:26 [snail-job-grpc-client-executor-127.0.0.1-1358] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2156] message:[UNAVAILABLE: io exception] +2026-05-08 15:14:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:14:36 [snail-job-grpc-client-executor-127.0.0.1-1359] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2158] message:[UNAVAILABLE: io exception] +2026-05-08 15:14:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:14:46 [snail-job-grpc-client-executor-127.0.0.1-1361] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2159] message:[UNAVAILABLE: io exception] +2026-05-08 15:14:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:14:56 [snail-job-grpc-client-executor-127.0.0.1-1362] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2160] message:[UNAVAILABLE: io exception] +2026-05-08 15:15:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:15:06 [snail-job-grpc-client-executor-127.0.0.1-1363] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2161] message:[UNAVAILABLE: io exception] +2026-05-08 15:15:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:15:16 [snail-job-grpc-client-executor-127.0.0.1-1364] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2162] message:[UNAVAILABLE: io exception] +2026-05-08 15:15:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:15:26 [snail-job-grpc-client-executor-127.0.0.1-1365] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2163] message:[UNAVAILABLE: io exception] +2026-05-08 15:15:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:15:36 [snail-job-grpc-client-executor-127.0.0.1-1367] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2164] message:[UNAVAILABLE: io exception] +2026-05-08 15:15:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:15:46 [snail-job-grpc-client-executor-127.0.0.1-1368] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2166] message:[UNAVAILABLE: io exception] +2026-05-08 15:15:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:15:56 [snail-job-grpc-client-executor-127.0.0.1-1369] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2167] message:[UNAVAILABLE: io exception] +2026-05-08 15:16:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:16:06 [snail-job-grpc-client-executor-127.0.0.1-1370] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2168] message:[UNAVAILABLE: io exception] +2026-05-08 15:16:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:16:16 [snail-job-grpc-client-executor-127.0.0.1-1371] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2169] message:[UNAVAILABLE: io exception] +2026-05-08 15:16:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:16:26 [snail-job-grpc-client-executor-127.0.0.1-1372] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2170] message:[UNAVAILABLE: io exception] +2026-05-08 15:16:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:16:36 [snail-job-grpc-client-executor-127.0.0.1-1374] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2171] message:[UNAVAILABLE: io exception] +2026-05-08 15:16:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:16:46 [snail-job-grpc-client-executor-127.0.0.1-1375] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2173] message:[UNAVAILABLE: io exception] +2026-05-08 15:16:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:16:56 [snail-job-grpc-client-executor-127.0.0.1-1376] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2174] message:[UNAVAILABLE: io exception] +2026-05-08 15:17:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:17:06 [snail-job-grpc-client-executor-127.0.0.1-1377] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2175] message:[UNAVAILABLE: io exception] +2026-05-08 15:17:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:17:16 [snail-job-grpc-client-executor-127.0.0.1-1378] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2176] message:[UNAVAILABLE: io exception] +2026-05-08 15:17:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:17:26 [snail-job-grpc-client-executor-127.0.0.1-1379] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2177] message:[UNAVAILABLE: io exception] +2026-05-08 15:17:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:17:36 [snail-job-grpc-client-executor-127.0.0.1-1380] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2178] message:[UNAVAILABLE: io exception] +2026-05-08 15:17:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:17:46 [snail-job-grpc-client-executor-127.0.0.1-1382] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2180] message:[UNAVAILABLE: io exception] +2026-05-08 15:17:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:17:56 [snail-job-grpc-client-executor-127.0.0.1-1383] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2181] message:[UNAVAILABLE: io exception] +2026-05-08 15:18:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:18:06 [snail-job-grpc-client-executor-127.0.0.1-1384] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2182] message:[UNAVAILABLE: io exception] +2026-05-08 15:18:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:18:16 [snail-job-grpc-client-executor-127.0.0.1-1385] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2183] message:[UNAVAILABLE: io exception] +2026-05-08 15:18:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:18:26 [snail-job-grpc-client-executor-127.0.0.1-1386] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2184] message:[UNAVAILABLE: io exception] +2026-05-08 15:18:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:18:36 [snail-job-grpc-client-executor-127.0.0.1-1388] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2186] message:[UNAVAILABLE: io exception] +2026-05-08 15:18:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:18:46 [snail-job-grpc-client-executor-127.0.0.1-1389] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2187] message:[UNAVAILABLE: io exception] +2026-05-08 15:18:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:18:56 [snail-job-grpc-client-executor-127.0.0.1-1390] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2188] message:[UNAVAILABLE: io exception] +2026-05-08 15:19:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:19:06 [snail-job-grpc-client-executor-127.0.0.1-1391] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2189] message:[UNAVAILABLE: io exception] +2026-05-08 15:19:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:19:16 [snail-job-grpc-client-executor-127.0.0.1-1392] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2190] message:[UNAVAILABLE: io exception] +2026-05-08 15:19:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:19:26 [snail-job-grpc-client-executor-127.0.0.1-1393] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2191] message:[UNAVAILABLE: io exception] +2026-05-08 15:19:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:19:36 [snail-job-grpc-client-executor-127.0.0.1-1394] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2192] message:[UNAVAILABLE: io exception] +2026-05-08 15:19:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:19:46 [snail-job-grpc-client-executor-127.0.0.1-1396] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2194] message:[UNAVAILABLE: io exception] +2026-05-08 15:19:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:19:56 [snail-job-grpc-client-executor-127.0.0.1-1397] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2195] message:[UNAVAILABLE: io exception] +2026-05-08 15:20:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:20:06 [snail-job-grpc-client-executor-127.0.0.1-1398] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2196] message:[UNAVAILABLE: io exception] +2026-05-08 15:20:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:20:16 [snail-job-grpc-client-executor-127.0.0.1-1399] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2197] message:[UNAVAILABLE: io exception] +2026-05-08 15:20:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:20:26 [snail-job-grpc-client-executor-127.0.0.1-1400] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2198] message:[UNAVAILABLE: io exception] +2026-05-08 15:20:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:20:36 [snail-job-grpc-client-executor-127.0.0.1-1401] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2200] message:[UNAVAILABLE: io exception] +2026-05-08 15:20:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:20:46 [snail-job-grpc-client-executor-127.0.0.1-1403] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2201] message:[UNAVAILABLE: io exception] +2026-05-08 15:20:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:20:56 [snail-job-grpc-client-executor-127.0.0.1-1404] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2202] message:[UNAVAILABLE: io exception] +2026-05-08 15:21:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:21:06 [snail-job-grpc-client-executor-127.0.0.1-1405] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2203] message:[UNAVAILABLE: io exception] +2026-05-08 15:21:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:21:16 [snail-job-grpc-client-executor-127.0.0.1-1406] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2204] message:[UNAVAILABLE: io exception] +2026-05-08 15:21:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:21:26 [snail-job-grpc-client-executor-127.0.0.1-1407] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2205] message:[UNAVAILABLE: io exception] +2026-05-08 15:21:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:21:36 [snail-job-grpc-client-executor-127.0.0.1-1409] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2207] message:[UNAVAILABLE: io exception] +2026-05-08 15:21:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:21:46 [snail-job-grpc-client-executor-127.0.0.1-1410] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2208] message:[UNAVAILABLE: io exception] +2026-05-08 15:21:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:21:56 [snail-job-grpc-client-executor-127.0.0.1-1411] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2209] message:[UNAVAILABLE: io exception] +2026-05-08 15:22:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:22:06 [snail-job-grpc-client-executor-127.0.0.1-1412] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2210] message:[UNAVAILABLE: io exception] +2026-05-08 15:22:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:22:16 [snail-job-grpc-client-executor-127.0.0.1-1413] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2211] message:[UNAVAILABLE: io exception] +2026-05-08 15:22:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:22:26 [snail-job-grpc-client-executor-127.0.0.1-1414] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2212] message:[UNAVAILABLE: io exception] +2026-05-08 15:22:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:22:36 [snail-job-grpc-client-executor-127.0.0.1-1415] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2213] message:[UNAVAILABLE: io exception] +2026-05-08 15:22:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:22:46 [snail-job-grpc-client-executor-127.0.0.1-1417] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2215] message:[UNAVAILABLE: io exception] +2026-05-08 15:22:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:22:56 [snail-job-grpc-client-executor-127.0.0.1-1418] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2216] message:[UNAVAILABLE: io exception] +2026-05-08 15:23:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:23:06 [snail-job-grpc-client-executor-127.0.0.1-1419] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2217] message:[UNAVAILABLE: io exception] +2026-05-08 15:23:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:23:16 [snail-job-grpc-client-executor-127.0.0.1-1420] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2218] message:[UNAVAILABLE: io exception] +2026-05-08 15:23:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:23:26 [snail-job-grpc-client-executor-127.0.0.1-1421] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2219] message:[UNAVAILABLE: io exception] +2026-05-08 15:23:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:23:36 [snail-job-grpc-client-executor-127.0.0.1-1423] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2221] message:[UNAVAILABLE: io exception] +2026-05-08 15:23:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:23:46 [snail-job-grpc-client-executor-127.0.0.1-1424] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2222] message:[UNAVAILABLE: io exception] +2026-05-08 15:23:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:23:56 [snail-job-grpc-client-executor-127.0.0.1-1425] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2223] message:[UNAVAILABLE: io exception] +2026-05-08 15:24:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:24:06 [snail-job-grpc-client-executor-127.0.0.1-1426] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2224] message:[UNAVAILABLE: io exception] +2026-05-08 15:24:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:24:16 [snail-job-grpc-client-executor-127.0.0.1-1427] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2225] message:[UNAVAILABLE: io exception] +2026-05-08 15:24:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:24:26 [snail-job-grpc-client-executor-127.0.0.1-1428] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2226] message:[UNAVAILABLE: io exception] +2026-05-08 15:24:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:24:36 [snail-job-grpc-client-executor-127.0.0.1-1430] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2227] message:[UNAVAILABLE: io exception] +2026-05-08 15:24:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:24:46 [snail-job-grpc-client-executor-127.0.0.1-1431] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2229] message:[UNAVAILABLE: io exception] +2026-05-08 15:24:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:24:56 [snail-job-grpc-client-executor-127.0.0.1-1432] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2230] message:[UNAVAILABLE: io exception] +2026-05-08 15:25:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:25:06 [snail-job-grpc-client-executor-127.0.0.1-1433] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2231] message:[UNAVAILABLE: io exception] +2026-05-08 15:25:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:25:16 [snail-job-grpc-client-executor-127.0.0.1-1434] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2232] message:[UNAVAILABLE: io exception] +2026-05-08 15:25:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:25:26 [snail-job-grpc-client-executor-127.0.0.1-1435] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2233] message:[UNAVAILABLE: io exception] +2026-05-08 15:25:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:25:36 [snail-job-grpc-client-executor-127.0.0.1-1437] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2234] message:[UNAVAILABLE: io exception] +2026-05-08 15:25:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:25:46 [snail-job-grpc-client-executor-127.0.0.1-1438] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2236] message:[UNAVAILABLE: io exception] +2026-05-08 15:25:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:25:56 [snail-job-grpc-client-executor-127.0.0.1-1439] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2237] message:[UNAVAILABLE: io exception] +2026-05-08 15:26:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:26:06 [snail-job-grpc-client-executor-127.0.0.1-1440] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2238] message:[UNAVAILABLE: io exception] +2026-05-08 15:26:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:26:16 [snail-job-grpc-client-executor-127.0.0.1-1441] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2239] message:[UNAVAILABLE: io exception] +2026-05-08 15:26:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:26:26 [snail-job-grpc-client-executor-127.0.0.1-1442] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2240] message:[UNAVAILABLE: io exception] +2026-05-08 15:26:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:26:36 [snail-job-grpc-client-executor-127.0.0.1-1443] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2242] message:[UNAVAILABLE: io exception] +2026-05-08 15:26:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:26:46 [snail-job-grpc-client-executor-127.0.0.1-1445] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2243] message:[UNAVAILABLE: io exception] +2026-05-08 15:26:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:26:56 [snail-job-grpc-client-executor-127.0.0.1-1446] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2244] message:[UNAVAILABLE: io exception] +2026-05-08 15:27:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:27:06 [snail-job-grpc-client-executor-127.0.0.1-1447] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2245] message:[UNAVAILABLE: io exception] +2026-05-08 15:27:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:27:16 [snail-job-grpc-client-executor-127.0.0.1-1448] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2246] message:[UNAVAILABLE: io exception] +2026-05-08 15:27:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:27:26 [snail-job-grpc-client-executor-127.0.0.1-1449] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2247] message:[UNAVAILABLE: io exception] +2026-05-08 15:27:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:27:36 [snail-job-grpc-client-executor-127.0.0.1-1450] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2249] message:[UNAVAILABLE: io exception] +2026-05-08 15:27:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:27:46 [snail-job-grpc-client-executor-127.0.0.1-1452] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2250] message:[UNAVAILABLE: io exception] +2026-05-08 15:27:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:27:56 [snail-job-grpc-client-executor-127.0.0.1-1453] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2251] message:[UNAVAILABLE: io exception] +2026-05-08 15:28:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:28:06 [snail-job-grpc-client-executor-127.0.0.1-1454] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2252] message:[UNAVAILABLE: io exception] +2026-05-08 15:28:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:28:16 [snail-job-grpc-client-executor-127.0.0.1-1455] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2253] message:[UNAVAILABLE: io exception] +2026-05-08 15:28:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:28:26 [snail-job-grpc-client-executor-127.0.0.1-1456] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2254] message:[UNAVAILABLE: io exception] +2026-05-08 15:28:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:28:36 [snail-job-grpc-client-executor-127.0.0.1-1457] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2255] message:[UNAVAILABLE: io exception] +2026-05-08 15:28:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:28:46 [snail-job-grpc-client-executor-127.0.0.1-1459] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2257] message:[UNAVAILABLE: io exception] +2026-05-08 15:28:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:28:56 [snail-job-grpc-client-executor-127.0.0.1-1460] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2258] message:[UNAVAILABLE: io exception] +2026-05-08 15:29:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:29:06 [snail-job-grpc-client-executor-127.0.0.1-1461] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2259] message:[UNAVAILABLE: io exception] +2026-05-08 15:29:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:29:16 [snail-job-grpc-client-executor-127.0.0.1-1462] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2260] message:[UNAVAILABLE: io exception] +2026-05-08 15:29:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:29:26 [snail-job-grpc-client-executor-127.0.0.1-1463] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2261] message:[UNAVAILABLE: io exception] +2026-05-08 15:29:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:29:36 [snail-job-grpc-client-executor-127.0.0.1-1464] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2263] message:[UNAVAILABLE: io exception] +2026-05-08 15:29:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:29:46 [snail-job-grpc-client-executor-127.0.0.1-1466] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2264] message:[UNAVAILABLE: io exception] +2026-05-08 15:29:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:29:56 [snail-job-grpc-client-executor-127.0.0.1-1467] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2265] message:[UNAVAILABLE: io exception] +2026-05-08 15:30:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:30:06 [snail-job-grpc-client-executor-127.0.0.1-1468] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2266] message:[UNAVAILABLE: io exception] +2026-05-08 15:30:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:30:16 [snail-job-grpc-client-executor-127.0.0.1-1469] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2267] message:[UNAVAILABLE: io exception] +2026-05-08 15:30:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:30:26 [snail-job-grpc-client-executor-127.0.0.1-1470] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2268] message:[UNAVAILABLE: io exception] +2026-05-08 15:30:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:30:36 [snail-job-grpc-client-executor-127.0.0.1-1471] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2270] message:[UNAVAILABLE: io exception] +2026-05-08 15:30:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:30:46 [snail-job-grpc-client-executor-127.0.0.1-1473] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2271] message:[UNAVAILABLE: io exception] +2026-05-08 15:30:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:30:56 [snail-job-grpc-client-executor-127.0.0.1-1474] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2272] message:[UNAVAILABLE: io exception] +2026-05-08 15:31:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:31:06 [snail-job-grpc-client-executor-127.0.0.1-1475] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2273] message:[UNAVAILABLE: io exception] +2026-05-08 15:31:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:31:16 [snail-job-grpc-client-executor-127.0.0.1-1476] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2274] message:[UNAVAILABLE: io exception] +2026-05-08 15:31:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:31:26 [snail-job-grpc-client-executor-127.0.0.1-1477] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2275] message:[UNAVAILABLE: io exception] +2026-05-08 15:31:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:31:36 [snail-job-grpc-client-executor-127.0.0.1-1479] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2277] message:[UNAVAILABLE: io exception] +2026-05-08 15:31:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:31:46 [snail-job-grpc-client-executor-127.0.0.1-1480] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2278] message:[UNAVAILABLE: io exception] +2026-05-08 15:31:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:31:56 [snail-job-grpc-client-executor-127.0.0.1-1481] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2279] message:[UNAVAILABLE: io exception] +2026-05-08 15:32:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:32:06 [snail-job-grpc-client-executor-127.0.0.1-1482] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2280] message:[UNAVAILABLE: io exception] +2026-05-08 15:32:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:32:16 [snail-job-grpc-client-executor-127.0.0.1-1483] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2281] message:[UNAVAILABLE: io exception] +2026-05-08 15:32:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:32:26 [snail-job-grpc-client-executor-127.0.0.1-1484] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2282] message:[UNAVAILABLE: io exception] +2026-05-08 15:32:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:32:36 [snail-job-grpc-client-executor-127.0.0.1-1486] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2284] message:[UNAVAILABLE: io exception] +2026-05-08 15:32:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:32:46 [snail-job-grpc-client-executor-127.0.0.1-1487] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2285] message:[UNAVAILABLE: io exception] +2026-05-08 15:32:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:32:56 [snail-job-grpc-client-executor-127.0.0.1-1488] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2286] message:[UNAVAILABLE: io exception] +2026-05-08 15:33:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:33:06 [snail-job-grpc-client-executor-127.0.0.1-1489] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2287] message:[UNAVAILABLE: io exception] +2026-05-08 15:33:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:33:16 [snail-job-grpc-client-executor-127.0.0.1-1490] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2288] message:[UNAVAILABLE: io exception] +2026-05-08 15:33:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:33:26 [snail-job-grpc-client-executor-127.0.0.1-1491] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2289] message:[UNAVAILABLE: io exception] +2026-05-08 15:33:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:33:36 [snail-job-grpc-client-executor-127.0.0.1-1492] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2291] message:[UNAVAILABLE: io exception] +2026-05-08 15:33:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:33:46 [snail-job-grpc-client-executor-127.0.0.1-1494] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2292] message:[UNAVAILABLE: io exception] +2026-05-08 15:33:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:33:56 [snail-job-grpc-client-executor-127.0.0.1-1495] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2293] message:[UNAVAILABLE: io exception] +2026-05-08 15:34:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:34:06 [snail-job-grpc-client-executor-127.0.0.1-1496] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2294] message:[UNAVAILABLE: io exception] +2026-05-08 15:34:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:34:16 [snail-job-grpc-client-executor-127.0.0.1-1497] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2295] message:[UNAVAILABLE: io exception] +2026-05-08 15:34:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:34:26 [snail-job-grpc-client-executor-127.0.0.1-1498] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2296] message:[UNAVAILABLE: io exception] +2026-05-08 15:34:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:34:36 [snail-job-grpc-client-executor-127.0.0.1-1500] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2297] message:[UNAVAILABLE: io exception] +2026-05-08 15:34:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:34:46 [snail-job-grpc-client-executor-127.0.0.1-1501] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2299] message:[UNAVAILABLE: io exception] +2026-05-08 15:34:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:34:56 [snail-job-grpc-client-executor-127.0.0.1-1502] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2300] message:[UNAVAILABLE: io exception] +2026-05-08 15:35:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:35:06 [snail-job-grpc-client-executor-127.0.0.1-1503] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2301] message:[UNAVAILABLE: io exception] +2026-05-08 15:35:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:35:16 [snail-job-grpc-client-executor-127.0.0.1-1504] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2302] message:[UNAVAILABLE: io exception] +2026-05-08 15:35:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:35:26 [snail-job-grpc-client-executor-127.0.0.1-1505] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2303] message:[UNAVAILABLE: io exception] +2026-05-08 15:35:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:35:36 [snail-job-grpc-client-executor-127.0.0.1-1507] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2305] message:[UNAVAILABLE: io exception] +2026-05-08 15:35:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:35:46 [snail-job-grpc-client-executor-127.0.0.1-1508] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2306] message:[UNAVAILABLE: io exception] +2026-05-08 15:35:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:35:56 [snail-job-grpc-client-executor-127.0.0.1-1509] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2307] message:[UNAVAILABLE: io exception] +2026-05-08 15:36:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:36:06 [snail-job-grpc-client-executor-127.0.0.1-1510] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2308] message:[UNAVAILABLE: io exception] +2026-05-08 15:36:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:36:16 [snail-job-grpc-client-executor-127.0.0.1-1511] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2309] message:[UNAVAILABLE: io exception] +2026-05-08 15:36:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:36:26 [snail-job-grpc-client-executor-127.0.0.1-1512] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2310] message:[UNAVAILABLE: io exception] +2026-05-08 15:36:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:36:36 [snail-job-grpc-client-executor-127.0.0.1-1514] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2312] message:[UNAVAILABLE: io exception] +2026-05-08 15:36:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:36:46 [snail-job-grpc-client-executor-127.0.0.1-1515] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2313] message:[UNAVAILABLE: io exception] +2026-05-08 15:36:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:36:56 [snail-job-grpc-client-executor-127.0.0.1-1516] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2314] message:[UNAVAILABLE: io exception] +2026-05-08 15:37:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:37:06 [snail-job-grpc-client-executor-127.0.0.1-1517] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2315] message:[UNAVAILABLE: io exception] +2026-05-08 15:37:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:37:16 [snail-job-grpc-client-executor-127.0.0.1-1518] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2316] message:[UNAVAILABLE: io exception] +2026-05-08 15:37:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:37:26 [snail-job-grpc-client-executor-127.0.0.1-1519] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2317] message:[UNAVAILABLE: io exception] +2026-05-08 15:37:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:37:36 [snail-job-grpc-client-executor-127.0.0.1-1521] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2319] message:[UNAVAILABLE: io exception] +2026-05-08 15:37:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:37:46 [snail-job-grpc-client-executor-127.0.0.1-1522] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2320] message:[UNAVAILABLE: io exception] +2026-05-08 15:37:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:37:56 [snail-job-grpc-client-executor-127.0.0.1-1523] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2321] message:[UNAVAILABLE: io exception] +2026-05-08 15:38:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:38:06 [snail-job-grpc-client-executor-127.0.0.1-1524] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2322] message:[UNAVAILABLE: io exception] +2026-05-08 15:38:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:38:16 [snail-job-grpc-client-executor-127.0.0.1-1525] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2323] message:[UNAVAILABLE: io exception] +2026-05-08 15:38:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:38:26 [snail-job-grpc-client-executor-127.0.0.1-1526] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2324] message:[UNAVAILABLE: io exception] +2026-05-08 15:38:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:38:36 [snail-job-grpc-client-executor-127.0.0.1-1528] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2326] message:[UNAVAILABLE: io exception] +2026-05-08 15:38:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:38:46 [snail-job-grpc-client-executor-127.0.0.1-1529] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2327] message:[UNAVAILABLE: io exception] +2026-05-08 15:38:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:38:56 [snail-job-grpc-client-executor-127.0.0.1-1530] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2328] message:[UNAVAILABLE: io exception] +2026-05-08 15:39:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:39:06 [snail-job-grpc-client-executor-127.0.0.1-1531] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2329] message:[UNAVAILABLE: io exception] +2026-05-08 15:39:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:39:16 [snail-job-grpc-client-executor-127.0.0.1-1532] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2330] message:[UNAVAILABLE: io exception] +2026-05-08 15:39:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:39:26 [snail-job-grpc-client-executor-127.0.0.1-1533] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2331] message:[UNAVAILABLE: io exception] +2026-05-08 15:39:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:39:36 [snail-job-grpc-client-executor-127.0.0.1-1534] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2332] message:[UNAVAILABLE: io exception] +2026-05-08 15:39:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:39:46 [snail-job-grpc-client-executor-127.0.0.1-1536] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2334] message:[UNAVAILABLE: io exception] +2026-05-08 15:39:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:39:56 [snail-job-grpc-client-executor-127.0.0.1-1537] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2335] message:[UNAVAILABLE: io exception] +2026-05-08 15:40:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:40:06 [snail-job-grpc-client-executor-127.0.0.1-1538] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2336] message:[UNAVAILABLE: io exception] +2026-05-08 15:40:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:40:16 [snail-job-grpc-client-executor-127.0.0.1-1539] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2337] message:[UNAVAILABLE: io exception] +2026-05-08 15:40:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:40:26 [snail-job-grpc-client-executor-127.0.0.1-1540] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2338] message:[UNAVAILABLE: io exception] +2026-05-08 15:40:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:40:36 [snail-job-grpc-client-executor-127.0.0.1-1542] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2340] message:[UNAVAILABLE: io exception] +2026-05-08 15:40:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:40:46 [snail-job-grpc-client-executor-127.0.0.1-1543] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2341] message:[UNAVAILABLE: io exception] +2026-05-08 15:40:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:40:56 [snail-job-grpc-client-executor-127.0.0.1-1544] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2342] message:[UNAVAILABLE: io exception] +2026-05-08 15:41:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:41:06 [snail-job-grpc-client-executor-127.0.0.1-1545] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2343] message:[UNAVAILABLE: io exception] +2026-05-08 15:41:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:41:16 [snail-job-grpc-client-executor-127.0.0.1-1546] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2344] message:[UNAVAILABLE: io exception] +2026-05-08 15:41:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:41:26 [snail-job-grpc-client-executor-127.0.0.1-1547] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2345] message:[UNAVAILABLE: io exception] +2026-05-08 15:41:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:41:36 [snail-job-grpc-client-executor-127.0.0.1-1549] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2347] message:[UNAVAILABLE: io exception] +2026-05-08 15:41:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:41:46 [snail-job-grpc-client-executor-127.0.0.1-1550] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2348] message:[UNAVAILABLE: io exception] +2026-05-08 15:41:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:41:56 [snail-job-grpc-client-executor-127.0.0.1-1551] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2349] message:[UNAVAILABLE: io exception] +2026-05-08 15:42:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:42:06 [snail-job-grpc-client-executor-127.0.0.1-1552] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2350] message:[UNAVAILABLE: io exception] +2026-05-08 15:42:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:42:16 [snail-job-grpc-client-executor-127.0.0.1-1553] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2351] message:[UNAVAILABLE: io exception] +2026-05-08 15:42:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:42:26 [snail-job-grpc-client-executor-127.0.0.1-1554] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2352] message:[UNAVAILABLE: io exception] +2026-05-08 15:42:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:42:36 [snail-job-grpc-client-executor-127.0.0.1-1555] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2354] message:[UNAVAILABLE: io exception] +2026-05-08 15:42:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:42:46 [snail-job-grpc-client-executor-127.0.0.1-1557] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2355] message:[UNAVAILABLE: io exception] +2026-05-08 15:42:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:42:56 [snail-job-grpc-client-executor-127.0.0.1-1558] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2356] message:[UNAVAILABLE: io exception] +2026-05-08 15:43:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:43:06 [snail-job-grpc-client-executor-127.0.0.1-1559] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2357] message:[UNAVAILABLE: io exception] +2026-05-08 15:43:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:43:16 [snail-job-grpc-client-executor-127.0.0.1-1560] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2358] message:[UNAVAILABLE: io exception] +2026-05-08 15:43:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:43:26 [snail-job-grpc-client-executor-127.0.0.1-1561] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2359] message:[UNAVAILABLE: io exception] +2026-05-08 15:43:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:43:36 [snail-job-grpc-client-executor-127.0.0.1-1562] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2361] message:[UNAVAILABLE: io exception] +2026-05-08 15:43:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:43:46 [snail-job-grpc-client-executor-127.0.0.1-1564] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2362] message:[UNAVAILABLE: io exception] +2026-05-08 15:43:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:43:56 [snail-job-grpc-client-executor-127.0.0.1-1565] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2363] message:[UNAVAILABLE: io exception] +2026-05-08 15:44:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:44:06 [snail-job-grpc-client-executor-127.0.0.1-1566] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2364] message:[UNAVAILABLE: io exception] +2026-05-08 15:44:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:44:16 [snail-job-grpc-client-executor-127.0.0.1-1567] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2365] message:[UNAVAILABLE: io exception] +2026-05-08 15:44:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:44:26 [snail-job-grpc-client-executor-127.0.0.1-1568] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2366] message:[UNAVAILABLE: io exception] +2026-05-08 15:44:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:44:36 [snail-job-grpc-client-executor-127.0.0.1-1570] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2368] message:[UNAVAILABLE: io exception] +2026-05-08 15:44:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:44:46 [snail-job-grpc-client-executor-127.0.0.1-1571] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2369] message:[UNAVAILABLE: io exception] +2026-05-08 15:44:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:44:56 [snail-job-grpc-client-executor-127.0.0.1-1572] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2370] message:[UNAVAILABLE: io exception] +2026-05-08 15:45:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:45:06 [snail-job-grpc-client-executor-127.0.0.1-1573] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2371] message:[UNAVAILABLE: io exception] +2026-05-08 15:45:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:45:16 [snail-job-grpc-client-executor-127.0.0.1-1574] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2372] message:[UNAVAILABLE: io exception] +2026-05-08 15:45:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:45:26 [snail-job-grpc-client-executor-127.0.0.1-1575] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2373] message:[UNAVAILABLE: io exception] +2026-05-08 15:45:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:45:36 [snail-job-grpc-client-executor-127.0.0.1-1576] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2375] message:[UNAVAILABLE: io exception] +2026-05-08 15:45:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:45:46 [snail-job-grpc-client-executor-127.0.0.1-1578] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2376] message:[UNAVAILABLE: io exception] +2026-05-08 15:45:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:45:56 [snail-job-grpc-client-executor-127.0.0.1-1579] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2377] message:[UNAVAILABLE: io exception] +2026-05-08 15:46:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:46:06 [snail-job-grpc-client-executor-127.0.0.1-1580] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2378] message:[UNAVAILABLE: io exception] +2026-05-08 15:46:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:46:16 [snail-job-grpc-client-executor-127.0.0.1-1581] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2379] message:[UNAVAILABLE: io exception] +2026-05-08 15:46:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:46:26 [snail-job-grpc-client-executor-127.0.0.1-1582] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2380] message:[UNAVAILABLE: io exception] +2026-05-08 15:46:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:46:36 [snail-job-grpc-client-executor-127.0.0.1-1583] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2382] message:[UNAVAILABLE: io exception] +2026-05-08 15:46:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:46:46 [snail-job-grpc-client-executor-127.0.0.1-1585] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2383] message:[UNAVAILABLE: io exception] +2026-05-08 15:46:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:46:56 [snail-job-grpc-client-executor-127.0.0.1-1586] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2384] message:[UNAVAILABLE: io exception] +2026-05-08 15:47:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:47:06 [snail-job-grpc-client-executor-127.0.0.1-1587] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2385] message:[UNAVAILABLE: io exception] +2026-05-08 15:47:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:47:16 [snail-job-grpc-client-executor-127.0.0.1-1588] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2386] message:[UNAVAILABLE: io exception] +2026-05-08 15:47:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:47:26 [snail-job-grpc-client-executor-127.0.0.1-1589] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2387] message:[UNAVAILABLE: io exception] +2026-05-08 15:47:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:47:36 [snail-job-grpc-client-executor-127.0.0.1-1591] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2389] message:[UNAVAILABLE: io exception] +2026-05-08 15:47:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:47:46 [snail-job-grpc-client-executor-127.0.0.1-1592] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2390] message:[UNAVAILABLE: io exception] +2026-05-08 15:47:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:47:56 [snail-job-grpc-client-executor-127.0.0.1-1593] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2391] message:[UNAVAILABLE: io exception] +2026-05-08 15:48:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:48:06 [snail-job-grpc-client-executor-127.0.0.1-1594] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2392] message:[UNAVAILABLE: io exception] +2026-05-08 15:48:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:48:16 [snail-job-grpc-client-executor-127.0.0.1-1595] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2393] message:[UNAVAILABLE: io exception] +2026-05-08 15:48:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:48:26 [snail-job-grpc-client-executor-127.0.0.1-1596] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2394] message:[UNAVAILABLE: io exception] +2026-05-08 15:48:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:48:36 [snail-job-grpc-client-executor-127.0.0.1-1598] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2395] message:[UNAVAILABLE: io exception] +2026-05-08 15:48:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:48:46 [snail-job-grpc-client-executor-127.0.0.1-1599] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2397] message:[UNAVAILABLE: io exception] +2026-05-08 15:48:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:48:56 [snail-job-grpc-client-executor-127.0.0.1-1600] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2398] message:[UNAVAILABLE: io exception] +2026-05-08 15:49:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:49:06 [snail-job-grpc-client-executor-127.0.0.1-1601] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2399] message:[UNAVAILABLE: io exception] +2026-05-08 15:49:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:49:16 [snail-job-grpc-client-executor-127.0.0.1-1602] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2400] message:[UNAVAILABLE: io exception] +2026-05-08 15:49:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:49:26 [snail-job-grpc-client-executor-127.0.0.1-1603] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2401] message:[UNAVAILABLE: io exception] +2026-05-08 15:49:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:49:36 [snail-job-grpc-client-executor-127.0.0.1-1605] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2402] message:[UNAVAILABLE: io exception] +2026-05-08 15:49:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:49:46 [snail-job-grpc-client-executor-127.0.0.1-1606] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2404] message:[UNAVAILABLE: io exception] +2026-05-08 15:49:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:49:56 [snail-job-grpc-client-executor-127.0.0.1-1607] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2405] message:[UNAVAILABLE: io exception] +2026-05-08 15:50:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:50:06 [snail-job-grpc-client-executor-127.0.0.1-1608] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2406] message:[UNAVAILABLE: io exception] +2026-05-08 15:50:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:50:16 [snail-job-grpc-client-executor-127.0.0.1-1609] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2407] message:[UNAVAILABLE: io exception] +2026-05-08 15:50:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:50:26 [snail-job-grpc-client-executor-127.0.0.1-1610] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2408] message:[UNAVAILABLE: io exception] +2026-05-08 15:50:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:50:36 [snail-job-grpc-client-executor-127.0.0.1-1611] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2410] message:[UNAVAILABLE: io exception] +2026-05-08 15:50:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:50:46 [snail-job-grpc-client-executor-127.0.0.1-1613] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2411] message:[UNAVAILABLE: io exception] +2026-05-08 15:50:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:50:56 [snail-job-grpc-client-executor-127.0.0.1-1614] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2412] message:[UNAVAILABLE: io exception] +2026-05-08 15:51:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:51:06 [snail-job-grpc-client-executor-127.0.0.1-1615] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2413] message:[UNAVAILABLE: io exception] +2026-05-08 15:51:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:51:16 [snail-job-grpc-client-executor-127.0.0.1-1616] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2414] message:[UNAVAILABLE: io exception] +2026-05-08 15:51:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:51:26 [snail-job-grpc-client-executor-127.0.0.1-1617] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2415] message:[UNAVAILABLE: io exception] +2026-05-08 15:51:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:51:36 [snail-job-grpc-client-executor-127.0.0.1-1619] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2417] message:[UNAVAILABLE: io exception] +2026-05-08 15:51:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:51:46 [snail-job-grpc-client-executor-127.0.0.1-1620] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2418] message:[UNAVAILABLE: io exception] +2026-05-08 15:51:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:51:56 [snail-job-grpc-client-executor-127.0.0.1-1621] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2419] message:[UNAVAILABLE: io exception] +2026-05-08 15:52:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:52:06 [snail-job-grpc-client-executor-127.0.0.1-1622] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2420] message:[UNAVAILABLE: io exception] +2026-05-08 15:52:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:52:16 [snail-job-grpc-client-executor-127.0.0.1-1623] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2421] message:[UNAVAILABLE: io exception] +2026-05-08 15:52:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:52:26 [snail-job-grpc-client-executor-127.0.0.1-1624] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2422] message:[UNAVAILABLE: io exception] +2026-05-08 15:52:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:52:36 [snail-job-grpc-client-executor-127.0.0.1-1626] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2423] message:[UNAVAILABLE: io exception] +2026-05-08 15:52:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:52:46 [snail-job-grpc-client-executor-127.0.0.1-1627] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2425] message:[UNAVAILABLE: io exception] +2026-05-08 15:52:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:52:56 [snail-job-grpc-client-executor-127.0.0.1-1628] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2426] message:[UNAVAILABLE: io exception] +2026-05-08 15:53:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:53:06 [snail-job-grpc-client-executor-127.0.0.1-1629] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2427] message:[UNAVAILABLE: io exception] +2026-05-08 15:53:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:53:16 [snail-job-grpc-client-executor-127.0.0.1-1630] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2428] message:[UNAVAILABLE: io exception] +2026-05-08 15:53:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:53:26 [snail-job-grpc-client-executor-127.0.0.1-1631] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2429] message:[UNAVAILABLE: io exception] +2026-05-08 15:53:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:53:36 [snail-job-grpc-client-executor-127.0.0.1-1633] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2430] message:[UNAVAILABLE: io exception] +2026-05-08 15:53:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:53:46 [snail-job-grpc-client-executor-127.0.0.1-1634] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2432] message:[UNAVAILABLE: io exception] +2026-05-08 15:53:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:53:56 [snail-job-grpc-client-executor-127.0.0.1-1635] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2433] message:[UNAVAILABLE: io exception] +2026-05-08 15:54:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:54:06 [snail-job-grpc-client-executor-127.0.0.1-1636] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2434] message:[UNAVAILABLE: io exception] +2026-05-08 15:54:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:54:16 [snail-job-grpc-client-executor-127.0.0.1-1637] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2435] message:[UNAVAILABLE: io exception] +2026-05-08 15:54:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:54:26 [snail-job-grpc-client-executor-127.0.0.1-1638] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2436] message:[UNAVAILABLE: io exception] +2026-05-08 15:54:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:54:36 [snail-job-grpc-client-executor-127.0.0.1-1639] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2438] message:[UNAVAILABLE: io exception] +2026-05-08 15:54:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:54:46 [snail-job-grpc-client-executor-127.0.0.1-1641] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2439] message:[UNAVAILABLE: io exception] +2026-05-08 15:54:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:54:56 [snail-job-grpc-client-executor-127.0.0.1-1642] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2440] message:[UNAVAILABLE: io exception] +2026-05-08 15:55:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:55:06 [snail-job-grpc-client-executor-127.0.0.1-1643] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2441] message:[UNAVAILABLE: io exception] +2026-05-08 15:55:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:55:16 [snail-job-grpc-client-executor-127.0.0.1-1644] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2442] message:[UNAVAILABLE: io exception] +2026-05-08 15:55:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:55:26 [snail-job-grpc-client-executor-127.0.0.1-1645] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2443] message:[UNAVAILABLE: io exception] +2026-05-08 15:55:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:55:36 [snail-job-grpc-client-executor-127.0.0.1-1647] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2444] message:[UNAVAILABLE: io exception] +2026-05-08 15:55:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:55:46 [snail-job-grpc-client-executor-127.0.0.1-1648] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2446] message:[UNAVAILABLE: io exception] +2026-05-08 15:55:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:55:56 [snail-job-grpc-client-executor-127.0.0.1-1649] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2447] message:[UNAVAILABLE: io exception] +2026-05-08 15:56:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:56:06 [snail-job-grpc-client-executor-127.0.0.1-1650] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2448] message:[UNAVAILABLE: io exception] +2026-05-08 15:56:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:56:16 [snail-job-grpc-client-executor-127.0.0.1-1651] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2449] message:[UNAVAILABLE: io exception] +2026-05-08 15:56:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:56:26 [snail-job-grpc-client-executor-127.0.0.1-1652] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2450] message:[UNAVAILABLE: io exception] +2026-05-08 15:56:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:56:36 [snail-job-grpc-client-executor-127.0.0.1-1653] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2451] message:[UNAVAILABLE: io exception] +2026-05-08 15:56:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:56:46 [snail-job-grpc-client-executor-127.0.0.1-1655] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2453] message:[UNAVAILABLE: io exception] +2026-05-08 15:56:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:56:56 [snail-job-grpc-client-executor-127.0.0.1-1656] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2454] message:[UNAVAILABLE: io exception] +2026-05-08 15:57:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:57:06 [snail-job-grpc-client-executor-127.0.0.1-1657] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2455] message:[UNAVAILABLE: io exception] +2026-05-08 15:57:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:57:16 [snail-job-grpc-client-executor-127.0.0.1-1658] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2456] message:[UNAVAILABLE: io exception] +2026-05-08 15:57:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:57:26 [snail-job-grpc-client-executor-127.0.0.1-1659] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2457] message:[UNAVAILABLE: io exception] +2026-05-08 15:57:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:57:36 [snail-job-grpc-client-executor-127.0.0.1-1660] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2459] message:[UNAVAILABLE: io exception] +2026-05-08 15:57:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:57:46 [snail-job-grpc-client-executor-127.0.0.1-1662] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2460] message:[UNAVAILABLE: io exception] +2026-05-08 15:57:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:57:56 [snail-job-grpc-client-executor-127.0.0.1-1663] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2461] message:[UNAVAILABLE: io exception] +2026-05-08 15:58:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:58:06 [snail-job-grpc-client-executor-127.0.0.1-1664] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2462] message:[UNAVAILABLE: io exception] +2026-05-08 15:58:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:58:16 [snail-job-grpc-client-executor-127.0.0.1-1665] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2463] message:[UNAVAILABLE: io exception] +2026-05-08 15:58:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:58:26 [snail-job-grpc-client-executor-127.0.0.1-1666] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2464] message:[UNAVAILABLE: io exception] +2026-05-08 15:58:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:58:36 [snail-job-grpc-client-executor-127.0.0.1-1667] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2465] message:[UNAVAILABLE: io exception] +2026-05-08 15:58:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:58:46 [snail-job-grpc-client-executor-127.0.0.1-1669] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2467] message:[UNAVAILABLE: io exception] +2026-05-08 15:58:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:58:56 [snail-job-grpc-client-executor-127.0.0.1-1670] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2468] message:[UNAVAILABLE: io exception] +2026-05-08 15:59:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:59:06 [snail-job-grpc-client-executor-127.0.0.1-1671] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2469] message:[UNAVAILABLE: io exception] +2026-05-08 15:59:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:59:16 [snail-job-grpc-client-executor-127.0.0.1-1672] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2470] message:[UNAVAILABLE: io exception] +2026-05-08 15:59:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:59:26 [snail-job-grpc-client-executor-127.0.0.1-1673] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2471] message:[UNAVAILABLE: io exception] +2026-05-08 15:59:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:59:36 [snail-job-grpc-client-executor-127.0.0.1-1675] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2472] message:[UNAVAILABLE: io exception] +2026-05-08 15:59:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:59:46 [snail-job-grpc-client-executor-127.0.0.1-1676] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2474] message:[UNAVAILABLE: io exception] +2026-05-08 15:59:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 15:59:56 [snail-job-grpc-client-executor-127.0.0.1-1677] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2475] message:[UNAVAILABLE: io exception] +2026-05-08 16:00:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:00:06 [snail-job-grpc-client-executor-127.0.0.1-1678] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2476] message:[UNAVAILABLE: io exception] +2026-05-08 16:00:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:00:16 [snail-job-grpc-client-executor-127.0.0.1-1679] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2477] message:[UNAVAILABLE: io exception] +2026-05-08 16:00:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:00:26 [snail-job-grpc-client-executor-127.0.0.1-1680] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2478] message:[UNAVAILABLE: io exception] +2026-05-08 16:00:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:00:36 [snail-job-grpc-client-executor-127.0.0.1-1681] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2480] message:[UNAVAILABLE: io exception] +2026-05-08 16:00:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:00:46 [snail-job-grpc-client-executor-127.0.0.1-1683] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2481] message:[UNAVAILABLE: io exception] +2026-05-08 16:00:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:00:56 [snail-job-grpc-client-executor-127.0.0.1-1684] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2482] message:[UNAVAILABLE: io exception] +2026-05-08 16:01:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:01:06 [snail-job-grpc-client-executor-127.0.0.1-1685] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2483] message:[UNAVAILABLE: io exception] +2026-05-08 16:01:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:01:16 [snail-job-grpc-client-executor-127.0.0.1-1686] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2484] message:[UNAVAILABLE: io exception] +2026-05-08 16:01:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:01:26 [snail-job-grpc-client-executor-127.0.0.1-1687] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2485] message:[UNAVAILABLE: io exception] +2026-05-08 16:01:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:01:36 [snail-job-grpc-client-executor-127.0.0.1-1688] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2486] message:[UNAVAILABLE: io exception] +2026-05-08 16:01:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:01:46 [snail-job-grpc-client-executor-127.0.0.1-1690] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2488] message:[UNAVAILABLE: io exception] +2026-05-08 16:01:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:01:56 [snail-job-grpc-client-executor-127.0.0.1-1691] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2489] message:[UNAVAILABLE: io exception] +2026-05-08 16:02:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:02:06 [snail-job-grpc-client-executor-127.0.0.1-1692] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2490] message:[UNAVAILABLE: io exception] +2026-05-08 16:02:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:02:16 [snail-job-grpc-client-executor-127.0.0.1-1693] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2491] message:[UNAVAILABLE: io exception] +2026-05-08 16:02:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:02:26 [snail-job-grpc-client-executor-127.0.0.1-1694] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2492] message:[UNAVAILABLE: io exception] +2026-05-08 16:02:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:02:36 [snail-job-grpc-client-executor-127.0.0.1-1695] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2493] message:[UNAVAILABLE: io exception] +2026-05-08 16:02:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:02:46 [snail-job-grpc-client-executor-127.0.0.1-1697] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2495] message:[UNAVAILABLE: io exception] +2026-05-08 16:02:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:02:56 [snail-job-grpc-client-executor-127.0.0.1-1698] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2496] message:[UNAVAILABLE: io exception] +2026-05-08 16:03:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:03:06 [snail-job-grpc-client-executor-127.0.0.1-1699] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2497] message:[UNAVAILABLE: io exception] +2026-05-08 16:03:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:03:16 [snail-job-grpc-client-executor-127.0.0.1-1700] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2498] message:[UNAVAILABLE: io exception] +2026-05-08 16:03:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:03:26 [snail-job-grpc-client-executor-127.0.0.1-1701] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2499] message:[UNAVAILABLE: io exception] +2026-05-08 16:03:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:03:36 [snail-job-grpc-client-executor-127.0.0.1-1703] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2501] message:[UNAVAILABLE: io exception] +2026-05-08 16:03:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:03:46 [snail-job-grpc-client-executor-127.0.0.1-1704] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2502] message:[UNAVAILABLE: io exception] +2026-05-08 16:03:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:03:56 [snail-job-grpc-client-executor-127.0.0.1-1705] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2503] message:[UNAVAILABLE: io exception] +2026-05-08 16:04:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:04:06 [snail-job-grpc-client-executor-127.0.0.1-1706] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2504] message:[UNAVAILABLE: io exception] +2026-05-08 16:04:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:04:16 [snail-job-grpc-client-executor-127.0.0.1-1707] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2505] message:[UNAVAILABLE: io exception] +2026-05-08 16:04:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:04:26 [snail-job-grpc-client-executor-127.0.0.1-1708] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2506] message:[UNAVAILABLE: io exception] +2026-05-08 16:04:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:04:36 [snail-job-grpc-client-executor-127.0.0.1-1709] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2508] message:[UNAVAILABLE: io exception] +2026-05-08 16:04:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:04:46 [snail-job-grpc-client-executor-127.0.0.1-1711] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2509] message:[UNAVAILABLE: io exception] +2026-05-08 16:04:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:04:56 [snail-job-grpc-client-executor-127.0.0.1-1712] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2510] message:[UNAVAILABLE: io exception] +2026-05-08 16:05:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:05:06 [snail-job-grpc-client-executor-127.0.0.1-1713] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2511] message:[UNAVAILABLE: io exception] +2026-05-08 16:05:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:05:16 [snail-job-grpc-client-executor-127.0.0.1-1714] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2512] message:[UNAVAILABLE: io exception] +2026-05-08 16:05:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:05:26 [snail-job-grpc-client-executor-127.0.0.1-1715] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2513] message:[UNAVAILABLE: io exception] +2026-05-08 16:05:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:05:36 [snail-job-grpc-client-executor-127.0.0.1-1717] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2514] message:[UNAVAILABLE: io exception] +2026-05-08 16:05:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:05:46 [snail-job-grpc-client-executor-127.0.0.1-1718] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2516] message:[UNAVAILABLE: io exception] +2026-05-08 16:05:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:05:56 [snail-job-grpc-client-executor-127.0.0.1-1719] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2517] message:[UNAVAILABLE: io exception] +2026-05-08 16:06:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:06:06 [snail-job-grpc-client-executor-127.0.0.1-1720] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2518] message:[UNAVAILABLE: io exception] +2026-05-08 16:06:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:06:16 [snail-job-grpc-client-executor-127.0.0.1-1721] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2519] message:[UNAVAILABLE: io exception] +2026-05-08 16:06:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:06:26 [snail-job-grpc-client-executor-127.0.0.1-1722] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2520] message:[UNAVAILABLE: io exception] +2026-05-08 16:06:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:06:36 [snail-job-grpc-client-executor-127.0.0.1-1724] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2522] message:[UNAVAILABLE: io exception] +2026-05-08 16:06:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:06:46 [snail-job-grpc-client-executor-127.0.0.1-1725] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2523] message:[UNAVAILABLE: io exception] +2026-05-08 16:06:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:06:56 [snail-job-grpc-client-executor-127.0.0.1-1726] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2524] message:[UNAVAILABLE: io exception] +2026-05-08 16:07:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:07:06 [snail-job-grpc-client-executor-127.0.0.1-1727] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2525] message:[UNAVAILABLE: io exception] +2026-05-08 16:07:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:07:16 [snail-job-grpc-client-executor-127.0.0.1-1728] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2526] message:[UNAVAILABLE: io exception] +2026-05-08 16:07:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:07:26 [snail-job-grpc-client-executor-127.0.0.1-1729] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2527] message:[UNAVAILABLE: io exception] +2026-05-08 16:07:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:07:36 [snail-job-grpc-client-executor-127.0.0.1-1731] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2529] message:[UNAVAILABLE: io exception] +2026-05-08 16:07:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:07:46 [snail-job-grpc-client-executor-127.0.0.1-1732] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2530] message:[UNAVAILABLE: io exception] +2026-05-08 16:07:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:07:56 [snail-job-grpc-client-executor-127.0.0.1-1733] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2531] message:[UNAVAILABLE: io exception] +2026-05-08 16:08:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:08:06 [snail-job-grpc-client-executor-127.0.0.1-1734] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2532] message:[UNAVAILABLE: io exception] +2026-05-08 16:08:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:08:16 [snail-job-grpc-client-executor-127.0.0.1-1735] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2533] message:[UNAVAILABLE: io exception] +2026-05-08 16:08:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:08:26 [snail-job-grpc-client-executor-127.0.0.1-1736] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2534] message:[UNAVAILABLE: io exception] +2026-05-08 16:08:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:08:36 [snail-job-grpc-client-executor-127.0.0.1-1738] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2536] message:[UNAVAILABLE: io exception] +2026-05-08 16:08:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:08:46 [snail-job-grpc-client-executor-127.0.0.1-1739] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2537] message:[UNAVAILABLE: io exception] +2026-05-08 16:08:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:08:56 [snail-job-grpc-client-executor-127.0.0.1-1740] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2538] message:[UNAVAILABLE: io exception] +2026-05-08 16:09:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:09:06 [snail-job-grpc-client-executor-127.0.0.1-1741] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2539] message:[UNAVAILABLE: io exception] +2026-05-08 16:09:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:09:16 [snail-job-grpc-client-executor-127.0.0.1-1742] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2540] message:[UNAVAILABLE: io exception] +2026-05-08 16:09:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:09:26 [snail-job-grpc-client-executor-127.0.0.1-1743] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2541] message:[UNAVAILABLE: io exception] +2026-05-08 16:09:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:09:36 [snail-job-grpc-client-executor-127.0.0.1-1745] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2542] message:[UNAVAILABLE: io exception] +2026-05-08 16:09:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:09:46 [snail-job-grpc-client-executor-127.0.0.1-1746] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2544] message:[UNAVAILABLE: io exception] +2026-05-08 16:09:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:09:56 [snail-job-grpc-client-executor-127.0.0.1-1747] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2545] message:[UNAVAILABLE: io exception] +2026-05-08 16:10:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:10:06 [snail-job-grpc-client-executor-127.0.0.1-1748] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2546] message:[UNAVAILABLE: io exception] +2026-05-08 16:10:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:10:16 [snail-job-grpc-client-executor-127.0.0.1-1749] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2547] message:[UNAVAILABLE: io exception] +2026-05-08 16:10:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:10:26 [snail-job-grpc-client-executor-127.0.0.1-1750] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2548] message:[UNAVAILABLE: io exception] +2026-05-08 16:10:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:10:36 [snail-job-grpc-client-executor-127.0.0.1-1751] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2549] message:[UNAVAILABLE: io exception] +2026-05-08 16:10:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:10:46 [snail-job-grpc-client-executor-127.0.0.1-1753] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2551] message:[UNAVAILABLE: io exception] +2026-05-08 16:10:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:10:56 [snail-job-grpc-client-executor-127.0.0.1-1754] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2552] message:[UNAVAILABLE: io exception] +2026-05-08 16:11:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:11:06 [snail-job-grpc-client-executor-127.0.0.1-1755] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2553] message:[UNAVAILABLE: io exception] +2026-05-08 16:11:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:11:16 [snail-job-grpc-client-executor-127.0.0.1-1756] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2554] message:[UNAVAILABLE: io exception] +2026-05-08 16:11:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:11:26 [snail-job-grpc-client-executor-127.0.0.1-1757] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2555] message:[UNAVAILABLE: io exception] +2026-05-08 16:11:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:11:36 [snail-job-grpc-client-executor-127.0.0.1-1758] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2556] message:[UNAVAILABLE: io exception] +2026-05-08 16:11:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:11:46 [snail-job-grpc-client-executor-127.0.0.1-1760] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2558] message:[UNAVAILABLE: io exception] +2026-05-08 16:11:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:11:56 [snail-job-grpc-client-executor-127.0.0.1-1761] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2559] message:[UNAVAILABLE: io exception] +2026-05-08 16:12:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:12:06 [snail-job-grpc-client-executor-127.0.0.1-1762] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2560] message:[UNAVAILABLE: io exception] +2026-05-08 16:12:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:12:16 [snail-job-grpc-client-executor-127.0.0.1-1763] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2561] message:[UNAVAILABLE: io exception] +2026-05-08 16:12:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:12:26 [snail-job-grpc-client-executor-127.0.0.1-1764] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2562] message:[UNAVAILABLE: io exception] +2026-05-08 16:12:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:12:36 [snail-job-grpc-client-executor-127.0.0.1-1766] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2564] message:[UNAVAILABLE: io exception] +2026-05-08 16:12:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:12:46 [snail-job-grpc-client-executor-127.0.0.1-1767] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2565] message:[UNAVAILABLE: io exception] +2026-05-08 16:12:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:12:56 [snail-job-grpc-client-executor-127.0.0.1-1768] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2566] message:[UNAVAILABLE: io exception] +2026-05-08 16:13:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:13:06 [snail-job-grpc-client-executor-127.0.0.1-1769] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2567] message:[UNAVAILABLE: io exception] +2026-05-08 16:13:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:13:16 [snail-job-grpc-client-executor-127.0.0.1-1770] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2568] message:[UNAVAILABLE: io exception] +2026-05-08 16:13:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:13:26 [snail-job-grpc-client-executor-127.0.0.1-1771] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2569] message:[UNAVAILABLE: io exception] +2026-05-08 16:13:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:13:36 [snail-job-grpc-client-executor-127.0.0.1-1773] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2570] message:[UNAVAILABLE: io exception] +2026-05-08 16:13:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:13:46 [snail-job-grpc-client-executor-127.0.0.1-1774] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2572] message:[UNAVAILABLE: io exception] +2026-05-08 16:13:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:13:56 [snail-job-grpc-client-executor-127.0.0.1-1775] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2573] message:[UNAVAILABLE: io exception] +2026-05-08 16:14:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:14:06 [snail-job-grpc-client-executor-127.0.0.1-1776] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2574] message:[UNAVAILABLE: io exception] +2026-05-08 16:14:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:14:16 [snail-job-grpc-client-executor-127.0.0.1-1777] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2575] message:[UNAVAILABLE: io exception] +2026-05-08 16:14:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:14:26 [snail-job-grpc-client-executor-127.0.0.1-1778] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2576] message:[UNAVAILABLE: io exception] +2026-05-08 16:14:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:14:36 [snail-job-grpc-client-executor-127.0.0.1-1780] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2578] message:[UNAVAILABLE: io exception] +2026-05-08 16:14:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:14:46 [snail-job-grpc-client-executor-127.0.0.1-1781] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2579] message:[UNAVAILABLE: io exception] +2026-05-08 16:14:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:14:56 [snail-job-grpc-client-executor-127.0.0.1-1782] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2580] message:[UNAVAILABLE: io exception] +2026-05-08 16:15:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:15:06 [snail-job-grpc-client-executor-127.0.0.1-1783] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2581] message:[UNAVAILABLE: io exception] +2026-05-08 16:15:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:15:16 [snail-job-grpc-client-executor-127.0.0.1-1784] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2582] message:[UNAVAILABLE: io exception] +2026-05-08 16:15:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:15:26 [snail-job-grpc-client-executor-127.0.0.1-1785] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2583] message:[UNAVAILABLE: io exception] +2026-05-08 16:15:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:15:36 [snail-job-grpc-client-executor-127.0.0.1-1786] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2584] message:[UNAVAILABLE: io exception] +2026-05-08 16:15:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:15:46 [snail-job-grpc-client-executor-127.0.0.1-1788] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2586] message:[UNAVAILABLE: io exception] +2026-05-08 16:15:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:15:56 [snail-job-grpc-client-executor-127.0.0.1-1789] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2587] message:[UNAVAILABLE: io exception] +2026-05-08 16:16:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:16:06 [snail-job-grpc-client-executor-127.0.0.1-1790] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2588] message:[UNAVAILABLE: io exception] +2026-05-08 16:16:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:16:16 [snail-job-grpc-client-executor-127.0.0.1-1791] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2589] message:[UNAVAILABLE: io exception] +2026-05-08 16:16:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:16:26 [snail-job-grpc-client-executor-127.0.0.1-1792] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2590] message:[UNAVAILABLE: io exception] +2026-05-08 16:16:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:16:36 [snail-job-grpc-client-executor-127.0.0.1-1793] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2591] message:[UNAVAILABLE: io exception] +2026-05-08 16:16:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:16:46 [snail-job-grpc-client-executor-127.0.0.1-1795] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2593] message:[UNAVAILABLE: io exception] +2026-05-08 16:16:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:16:56 [snail-job-grpc-client-executor-127.0.0.1-1796] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2594] message:[UNAVAILABLE: io exception] +2026-05-08 16:17:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:17:06 [snail-job-grpc-client-executor-127.0.0.1-1797] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2595] message:[UNAVAILABLE: io exception] +2026-05-08 16:17:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:17:16 [snail-job-grpc-client-executor-127.0.0.1-1798] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2596] message:[UNAVAILABLE: io exception] +2026-05-08 16:17:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:17:26 [snail-job-grpc-client-executor-127.0.0.1-1799] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2597] message:[UNAVAILABLE: io exception] +2026-05-08 16:17:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:17:36 [snail-job-grpc-client-executor-127.0.0.1-1800] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2599] message:[UNAVAILABLE: io exception] +2026-05-08 16:17:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:17:46 [snail-job-grpc-client-executor-127.0.0.1-1802] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2600] message:[UNAVAILABLE: io exception] +2026-05-08 16:17:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:17:56 [snail-job-grpc-client-executor-127.0.0.1-1803] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2601] message:[UNAVAILABLE: io exception] +2026-05-08 16:18:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:18:06 [snail-job-grpc-client-executor-127.0.0.1-1804] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2602] message:[UNAVAILABLE: io exception] +2026-05-08 16:18:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:18:16 [snail-job-grpc-client-executor-127.0.0.1-1805] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2603] message:[UNAVAILABLE: io exception] +2026-05-08 16:18:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:18:26 [snail-job-grpc-client-executor-127.0.0.1-1806] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2604] message:[UNAVAILABLE: io exception] +2026-05-08 16:18:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:18:36 [snail-job-grpc-client-executor-127.0.0.1-1807] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2606] message:[UNAVAILABLE: io exception] +2026-05-08 16:18:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:18:46 [snail-job-grpc-client-executor-127.0.0.1-1809] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2607] message:[UNAVAILABLE: io exception] +2026-05-08 16:18:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:18:56 [snail-job-grpc-client-executor-127.0.0.1-1810] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2608] message:[UNAVAILABLE: io exception] +2026-05-08 16:19:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:19:06 [snail-job-grpc-client-executor-127.0.0.1-1811] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2609] message:[UNAVAILABLE: io exception] +2026-05-08 16:19:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:19:16 [snail-job-grpc-client-executor-127.0.0.1-1812] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2610] message:[UNAVAILABLE: io exception] +2026-05-08 16:19:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:19:26 [snail-job-grpc-client-executor-127.0.0.1-1813] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2611] message:[UNAVAILABLE: io exception] +2026-05-08 16:19:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:19:36 [snail-job-grpc-client-executor-127.0.0.1-1815] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2612] message:[UNAVAILABLE: io exception] +2026-05-08 16:19:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:19:46 [snail-job-grpc-client-executor-127.0.0.1-1816] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2614] message:[UNAVAILABLE: io exception] +2026-05-08 16:19:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:19:56 [snail-job-grpc-client-executor-127.0.0.1-1817] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2615] message:[UNAVAILABLE: io exception] +2026-05-08 16:20:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:20:06 [snail-job-grpc-client-executor-127.0.0.1-1818] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2616] message:[UNAVAILABLE: io exception] +2026-05-08 16:20:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:20:16 [snail-job-grpc-client-executor-127.0.0.1-1819] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2617] message:[UNAVAILABLE: io exception] +2026-05-08 16:20:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:20:26 [snail-job-grpc-client-executor-127.0.0.1-1820] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2618] message:[UNAVAILABLE: io exception] +2026-05-08 16:20:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:20:36 [snail-job-grpc-client-executor-127.0.0.1-1821] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2619] message:[UNAVAILABLE: io exception] +2026-05-08 16:20:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:20:46 [snail-job-grpc-client-executor-127.0.0.1-1823] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2621] message:[UNAVAILABLE: io exception] +2026-05-08 16:20:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:20:56 [snail-job-grpc-client-executor-127.0.0.1-1824] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2622] message:[UNAVAILABLE: io exception] +2026-05-08 16:21:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:21:06 [snail-job-grpc-client-executor-127.0.0.1-1825] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2623] message:[UNAVAILABLE: io exception] +2026-05-08 16:21:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:21:16 [snail-job-grpc-client-executor-127.0.0.1-1826] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2624] message:[UNAVAILABLE: io exception] +2026-05-08 16:21:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:21:26 [snail-job-grpc-client-executor-127.0.0.1-1827] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2625] message:[UNAVAILABLE: io exception] +2026-05-08 16:21:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:21:36 [snail-job-grpc-client-executor-127.0.0.1-1828] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2626] message:[UNAVAILABLE: io exception] +2026-05-08 16:21:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:21:46 [snail-job-grpc-client-executor-127.0.0.1-1830] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2628] message:[UNAVAILABLE: io exception] +2026-05-08 16:21:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:21:56 [snail-job-grpc-client-executor-127.0.0.1-1831] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2629] message:[UNAVAILABLE: io exception] +2026-05-08 16:22:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:22:06 [snail-job-grpc-client-executor-127.0.0.1-1832] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2630] message:[UNAVAILABLE: io exception] +2026-05-08 16:22:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:22:16 [snail-job-grpc-client-executor-127.0.0.1-1833] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2631] message:[UNAVAILABLE: io exception] +2026-05-08 16:22:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:22:26 [snail-job-grpc-client-executor-127.0.0.1-1834] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2632] message:[UNAVAILABLE: io exception] +2026-05-08 16:22:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:22:36 [snail-job-grpc-client-executor-127.0.0.1-1836] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2634] message:[UNAVAILABLE: io exception] +2026-05-08 16:22:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:22:46 [snail-job-grpc-client-executor-127.0.0.1-1837] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2635] message:[UNAVAILABLE: io exception] +2026-05-08 16:22:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:22:56 [snail-job-grpc-client-executor-127.0.0.1-1838] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2636] message:[UNAVAILABLE: io exception] +2026-05-08 16:23:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:23:06 [snail-job-grpc-client-executor-127.0.0.1-1839] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2637] message:[UNAVAILABLE: io exception] +2026-05-08 16:23:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:23:16 [snail-job-grpc-client-executor-127.0.0.1-1840] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2638] message:[UNAVAILABLE: io exception] +2026-05-08 16:23:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:23:26 [snail-job-grpc-client-executor-127.0.0.1-1841] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2639] message:[UNAVAILABLE: io exception] +2026-05-08 16:23:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:23:36 [snail-job-grpc-client-executor-127.0.0.1-1842] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2640] message:[UNAVAILABLE: io exception] +2026-05-08 16:23:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:23:46 [snail-job-grpc-client-executor-127.0.0.1-1844] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2642] message:[UNAVAILABLE: io exception] +2026-05-08 16:23:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:23:56 [snail-job-grpc-client-executor-127.0.0.1-1845] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2643] message:[UNAVAILABLE: io exception] +2026-05-08 16:24:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:24:06 [snail-job-grpc-client-executor-127.0.0.1-1846] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2644] message:[UNAVAILABLE: io exception] +2026-05-08 16:24:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:24:16 [snail-job-grpc-client-executor-127.0.0.1-1847] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2645] message:[UNAVAILABLE: io exception] +2026-05-08 16:24:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:24:26 [snail-job-grpc-client-executor-127.0.0.1-1848] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2646] message:[UNAVAILABLE: io exception] +2026-05-08 16:24:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:24:36 [snail-job-grpc-client-executor-127.0.0.1-1850] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2648] message:[UNAVAILABLE: io exception] +2026-05-08 16:24:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:24:46 [snail-job-grpc-client-executor-127.0.0.1-1851] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2649] message:[UNAVAILABLE: io exception] +2026-05-08 16:24:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:24:56 [snail-job-grpc-client-executor-127.0.0.1-1852] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2650] message:[UNAVAILABLE: io exception] +2026-05-08 16:25:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:25:06 [snail-job-grpc-client-executor-127.0.0.1-1853] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2651] message:[UNAVAILABLE: io exception] +2026-05-08 16:25:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:25:16 [snail-job-grpc-client-executor-127.0.0.1-1854] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2652] message:[UNAVAILABLE: io exception] +2026-05-08 16:25:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:25:26 [snail-job-grpc-client-executor-127.0.0.1-1855] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2653] message:[UNAVAILABLE: io exception] +2026-05-08 16:25:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:25:36 [snail-job-grpc-client-executor-127.0.0.1-1856] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2654] message:[UNAVAILABLE: io exception] +2026-05-08 16:25:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:25:46 [snail-job-grpc-client-executor-127.0.0.1-1858] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2656] message:[UNAVAILABLE: io exception] +2026-05-08 16:25:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:25:56 [snail-job-grpc-client-executor-127.0.0.1-1859] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2657] message:[UNAVAILABLE: io exception] +2026-05-08 16:26:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:26:06 [snail-job-grpc-client-executor-127.0.0.1-1860] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2658] message:[UNAVAILABLE: io exception] +2026-05-08 16:26:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:26:16 [snail-job-grpc-client-executor-127.0.0.1-1861] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2659] message:[UNAVAILABLE: io exception] +2026-05-08 16:26:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:26:26 [snail-job-grpc-client-executor-127.0.0.1-1862] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2660] message:[UNAVAILABLE: io exception] +2026-05-08 16:26:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:26:36 [snail-job-grpc-client-executor-127.0.0.1-1864] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2661] message:[UNAVAILABLE: io exception] +2026-05-08 16:26:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:26:46 [snail-job-grpc-client-executor-127.0.0.1-1865] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2663] message:[UNAVAILABLE: io exception] +2026-05-08 16:26:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:26:56 [snail-job-grpc-client-executor-127.0.0.1-1866] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2664] message:[UNAVAILABLE: io exception] +2026-05-08 16:27:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:27:06 [snail-job-grpc-client-executor-127.0.0.1-1867] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2665] message:[UNAVAILABLE: io exception] +2026-05-08 16:27:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:27:16 [snail-job-grpc-client-executor-127.0.0.1-1868] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2666] message:[UNAVAILABLE: io exception] +2026-05-08 16:27:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:27:26 [snail-job-grpc-client-executor-127.0.0.1-1869] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2667] message:[UNAVAILABLE: io exception] +2026-05-08 16:27:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:27:36 [snail-job-grpc-client-executor-127.0.0.1-1871] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2668] message:[UNAVAILABLE: io exception] +2026-05-08 16:27:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:27:46 [snail-job-grpc-client-executor-127.0.0.1-1872] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2670] message:[UNAVAILABLE: io exception] +2026-05-08 16:27:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:27:56 [snail-job-grpc-client-executor-127.0.0.1-1873] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2671] message:[UNAVAILABLE: io exception] +2026-05-08 16:28:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:28:06 [snail-job-grpc-client-executor-127.0.0.1-1874] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2672] message:[UNAVAILABLE: io exception] +2026-05-08 16:28:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:28:16 [snail-job-grpc-client-executor-127.0.0.1-1875] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2673] message:[UNAVAILABLE: io exception] +2026-05-08 16:28:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:28:26 [snail-job-grpc-client-executor-127.0.0.1-1876] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2674] message:[UNAVAILABLE: io exception] +2026-05-08 16:28:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:28:36 [snail-job-grpc-client-executor-127.0.0.1-1877] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2675] message:[UNAVAILABLE: io exception] +2026-05-08 16:28:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:28:46 [snail-job-grpc-client-executor-127.0.0.1-1879] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2677] message:[UNAVAILABLE: io exception] +2026-05-08 16:28:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:28:56 [snail-job-grpc-client-executor-127.0.0.1-1880] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2678] message:[UNAVAILABLE: io exception] +2026-05-08 16:29:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:29:06 [snail-job-grpc-client-executor-127.0.0.1-1881] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2679] message:[UNAVAILABLE: io exception] +2026-05-08 16:29:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:29:16 [snail-job-grpc-client-executor-127.0.0.1-1882] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2680] message:[UNAVAILABLE: io exception] +2026-05-08 16:29:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:29:26 [snail-job-grpc-client-executor-127.0.0.1-1883] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2681] message:[UNAVAILABLE: io exception] +2026-05-08 16:29:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:29:36 [snail-job-grpc-client-executor-127.0.0.1-1884] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2682] message:[UNAVAILABLE: io exception] +2026-05-08 16:29:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:29:46 [snail-job-grpc-client-executor-127.0.0.1-1886] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2684] message:[UNAVAILABLE: io exception] +2026-05-08 16:29:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:29:56 [snail-job-grpc-client-executor-127.0.0.1-1887] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2685] message:[UNAVAILABLE: io exception] +2026-05-08 16:30:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:30:06 [snail-job-grpc-client-executor-127.0.0.1-1888] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2686] message:[UNAVAILABLE: io exception] +2026-05-08 16:30:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:30:16 [snail-job-grpc-client-executor-127.0.0.1-1889] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2687] message:[UNAVAILABLE: io exception] +2026-05-08 16:30:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:30:26 [snail-job-grpc-client-executor-127.0.0.1-1890] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2688] message:[UNAVAILABLE: io exception] +2026-05-08 16:30:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:30:36 [snail-job-grpc-client-executor-127.0.0.1-1891] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2690] message:[UNAVAILABLE: io exception] +2026-05-08 16:30:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:30:46 [snail-job-grpc-client-executor-127.0.0.1-1893] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2691] message:[UNAVAILABLE: io exception] +2026-05-08 16:30:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:30:56 [snail-job-grpc-client-executor-127.0.0.1-1894] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2692] message:[UNAVAILABLE: io exception] +2026-05-08 16:31:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:31:06 [snail-job-grpc-client-executor-127.0.0.1-1895] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2693] message:[UNAVAILABLE: io exception] +2026-05-08 16:31:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:31:16 [snail-job-grpc-client-executor-127.0.0.1-1896] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2694] message:[UNAVAILABLE: io exception] +2026-05-08 16:31:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:31:26 [snail-job-grpc-client-executor-127.0.0.1-1897] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2695] message:[UNAVAILABLE: io exception] +2026-05-08 16:31:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:31:36 [snail-job-grpc-client-executor-127.0.0.1-1899] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2696] message:[UNAVAILABLE: io exception] +2026-05-08 16:31:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:31:46 [snail-job-grpc-client-executor-127.0.0.1-1900] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2698] message:[UNAVAILABLE: io exception] +2026-05-08 16:31:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:31:56 [snail-job-grpc-client-executor-127.0.0.1-1901] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2699] message:[UNAVAILABLE: io exception] +2026-05-08 16:32:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:32:06 [snail-job-grpc-client-executor-127.0.0.1-1902] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2700] message:[UNAVAILABLE: io exception] +2026-05-08 16:32:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:32:16 [snail-job-grpc-client-executor-127.0.0.1-1903] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2701] message:[UNAVAILABLE: io exception] +2026-05-08 16:32:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:32:26 [snail-job-grpc-client-executor-127.0.0.1-1904] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2702] message:[UNAVAILABLE: io exception] +2026-05-08 16:32:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:32:36 [snail-job-grpc-client-executor-127.0.0.1-1905] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2703] message:[UNAVAILABLE: io exception] +2026-05-08 16:32:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:32:46 [snail-job-grpc-client-executor-127.0.0.1-1907] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2705] message:[UNAVAILABLE: io exception] +2026-05-08 16:32:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:32:56 [snail-job-grpc-client-executor-127.0.0.1-1908] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2706] message:[UNAVAILABLE: io exception] +2026-05-08 16:33:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:33:06 [snail-job-grpc-client-executor-127.0.0.1-1909] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2707] message:[UNAVAILABLE: io exception] +2026-05-08 16:33:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:33:16 [snail-job-grpc-client-executor-127.0.0.1-1910] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2708] message:[UNAVAILABLE: io exception] +2026-05-08 16:33:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:33:26 [snail-job-grpc-client-executor-127.0.0.1-1911] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2709] message:[UNAVAILABLE: io exception] +2026-05-08 16:33:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:33:36 [snail-job-grpc-client-executor-127.0.0.1-1913] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2711] message:[UNAVAILABLE: io exception] +2026-05-08 16:33:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:33:46 [snail-job-grpc-client-executor-127.0.0.1-1914] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2712] message:[UNAVAILABLE: io exception] +2026-05-08 16:33:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:33:56 [snail-job-grpc-client-executor-127.0.0.1-1915] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2713] message:[UNAVAILABLE: io exception] +2026-05-08 16:34:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:34:06 [snail-job-grpc-client-executor-127.0.0.1-1916] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2714] message:[UNAVAILABLE: io exception] +2026-05-08 16:34:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:34:16 [snail-job-grpc-client-executor-127.0.0.1-1917] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2715] message:[UNAVAILABLE: io exception] +2026-05-08 16:34:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:34:26 [snail-job-grpc-client-executor-127.0.0.1-1918] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2716] message:[UNAVAILABLE: io exception] +2026-05-08 16:34:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:34:36 [snail-job-grpc-client-executor-127.0.0.1-1920] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2717] message:[UNAVAILABLE: io exception] +2026-05-08 16:34:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:34:46 [snail-job-grpc-client-executor-127.0.0.1-1921] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2719] message:[UNAVAILABLE: io exception] +2026-05-08 16:34:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:34:56 [snail-job-grpc-client-executor-127.0.0.1-1922] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2720] message:[UNAVAILABLE: io exception] +2026-05-08 16:35:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:35:06 [snail-job-grpc-client-executor-127.0.0.1-1923] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2721] message:[UNAVAILABLE: io exception] +2026-05-08 16:35:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:35:16 [snail-job-grpc-client-executor-127.0.0.1-1924] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2722] message:[UNAVAILABLE: io exception] +2026-05-08 16:35:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:35:26 [snail-job-grpc-client-executor-127.0.0.1-1925] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2723] message:[UNAVAILABLE: io exception] +2026-05-08 16:35:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:35:36 [snail-job-grpc-client-executor-127.0.0.1-1926] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2724] message:[UNAVAILABLE: io exception] +2026-05-08 16:35:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:35:46 [snail-job-grpc-client-executor-127.0.0.1-1928] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2726] message:[UNAVAILABLE: io exception] +2026-05-08 16:35:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:35:56 [snail-job-grpc-client-executor-127.0.0.1-1929] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2727] message:[UNAVAILABLE: io exception] +2026-05-08 16:36:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:36:06 [snail-job-grpc-client-executor-127.0.0.1-1930] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2728] message:[UNAVAILABLE: io exception] +2026-05-08 16:36:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:36:16 [snail-job-grpc-client-executor-127.0.0.1-1931] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2729] message:[UNAVAILABLE: io exception] +2026-05-08 16:36:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:36:26 [snail-job-grpc-client-executor-127.0.0.1-1932] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2730] message:[UNAVAILABLE: io exception] +2026-05-08 16:36:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:36:36 [snail-job-grpc-client-executor-127.0.0.1-1933] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2732] message:[UNAVAILABLE: io exception] +2026-05-08 16:36:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:36:46 [snail-job-grpc-client-executor-127.0.0.1-1935] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2733] message:[UNAVAILABLE: io exception] +2026-05-08 16:36:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:36:56 [snail-job-grpc-client-executor-127.0.0.1-1936] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2734] message:[UNAVAILABLE: io exception] +2026-05-08 16:37:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:37:06 [snail-job-grpc-client-executor-127.0.0.1-1937] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2735] message:[UNAVAILABLE: io exception] +2026-05-08 16:37:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:37:16 [snail-job-grpc-client-executor-127.0.0.1-1938] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2736] message:[UNAVAILABLE: io exception] +2026-05-08 16:37:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:37:26 [snail-job-grpc-client-executor-127.0.0.1-1939] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2737] message:[UNAVAILABLE: io exception] +2026-05-08 16:37:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:37:36 [snail-job-grpc-client-executor-127.0.0.1-1941] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2738] message:[UNAVAILABLE: io exception] +2026-05-08 16:37:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:37:46 [snail-job-grpc-client-executor-127.0.0.1-1942] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2740] message:[UNAVAILABLE: io exception] +2026-05-08 16:37:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:37:56 [snail-job-grpc-client-executor-127.0.0.1-1943] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2741] message:[UNAVAILABLE: io exception] +2026-05-08 16:38:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:38:06 [snail-job-grpc-client-executor-127.0.0.1-1944] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2742] message:[UNAVAILABLE: io exception] +2026-05-08 16:38:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:38:16 [snail-job-grpc-client-executor-127.0.0.1-1945] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2743] message:[UNAVAILABLE: io exception] +2026-05-08 16:38:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:38:26 [snail-job-grpc-client-executor-127.0.0.1-1946] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2744] message:[UNAVAILABLE: io exception] +2026-05-08 16:38:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:38:36 [snail-job-grpc-client-executor-127.0.0.1-1947] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2746] message:[UNAVAILABLE: io exception] +2026-05-08 16:38:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:38:46 [snail-job-grpc-client-executor-127.0.0.1-1949] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2747] message:[UNAVAILABLE: io exception] +2026-05-08 16:38:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:38:56 [snail-job-grpc-client-executor-127.0.0.1-1950] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2748] message:[UNAVAILABLE: io exception] +2026-05-08 16:39:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:39:06 [snail-job-grpc-client-executor-127.0.0.1-1951] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2749] message:[UNAVAILABLE: io exception] +2026-05-08 16:39:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:39:16 [snail-job-grpc-client-executor-127.0.0.1-1952] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2750] message:[UNAVAILABLE: io exception] +2026-05-08 16:39:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:39:26 [snail-job-grpc-client-executor-127.0.0.1-1953] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2751] message:[UNAVAILABLE: io exception] +2026-05-08 16:39:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:39:36 [snail-job-grpc-client-executor-127.0.0.1-1955] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2752] message:[UNAVAILABLE: io exception] +2026-05-08 16:39:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:39:46 [snail-job-grpc-client-executor-127.0.0.1-1956] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2754] message:[UNAVAILABLE: io exception] +2026-05-08 16:39:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:39:56 [snail-job-grpc-client-executor-127.0.0.1-1957] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2755] message:[UNAVAILABLE: io exception] +2026-05-08 16:40:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:40:06 [snail-job-grpc-client-executor-127.0.0.1-1958] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2756] message:[UNAVAILABLE: io exception] +2026-05-08 16:40:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:40:16 [snail-job-grpc-client-executor-127.0.0.1-1959] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2757] message:[UNAVAILABLE: io exception] +2026-05-08 16:40:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:40:26 [snail-job-grpc-client-executor-127.0.0.1-1960] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2758] message:[UNAVAILABLE: io exception] +2026-05-08 16:40:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:40:36 [snail-job-grpc-client-executor-127.0.0.1-1962] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2760] message:[UNAVAILABLE: io exception] +2026-05-08 16:40:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:40:46 [snail-job-grpc-client-executor-127.0.0.1-1963] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2761] message:[UNAVAILABLE: io exception] +2026-05-08 16:40:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:40:56 [snail-job-grpc-client-executor-127.0.0.1-1964] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2762] message:[UNAVAILABLE: io exception] +2026-05-08 16:41:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:41:06 [snail-job-grpc-client-executor-127.0.0.1-1965] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2763] message:[UNAVAILABLE: io exception] +2026-05-08 16:41:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:41:16 [snail-job-grpc-client-executor-127.0.0.1-1966] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2764] message:[UNAVAILABLE: io exception] +2026-05-08 16:41:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:41:26 [snail-job-grpc-client-executor-127.0.0.1-1967] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2765] message:[UNAVAILABLE: io exception] +2026-05-08 16:41:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:41:36 [snail-job-grpc-client-executor-127.0.0.1-1968] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2766] message:[UNAVAILABLE: io exception] +2026-05-08 16:41:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:41:46 [snail-job-grpc-client-executor-127.0.0.1-1970] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2768] message:[UNAVAILABLE: io exception] +2026-05-08 16:41:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:41:56 [snail-job-grpc-client-executor-127.0.0.1-1971] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2769] message:[UNAVAILABLE: io exception] +2026-05-08 16:42:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:42:06 [snail-job-grpc-client-executor-127.0.0.1-1972] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2770] message:[UNAVAILABLE: io exception] +2026-05-08 16:42:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:42:16 [snail-job-grpc-client-executor-127.0.0.1-1973] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2771] message:[UNAVAILABLE: io exception] +2026-05-08 16:42:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:42:26 [snail-job-grpc-client-executor-127.0.0.1-1974] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2772] message:[UNAVAILABLE: io exception] +2026-05-08 16:42:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:42:36 [snail-job-grpc-client-executor-127.0.0.1-1975] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2774] message:[UNAVAILABLE: io exception] +2026-05-08 16:42:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:42:46 [snail-job-grpc-client-executor-127.0.0.1-1977] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2775] message:[UNAVAILABLE: io exception] +2026-05-08 16:42:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:42:56 [snail-job-grpc-client-executor-127.0.0.1-1978] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2776] message:[UNAVAILABLE: io exception] +2026-05-08 16:43:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:43:06 [snail-job-grpc-client-executor-127.0.0.1-1979] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2777] message:[UNAVAILABLE: io exception] +2026-05-08 16:43:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:43:16 [snail-job-grpc-client-executor-127.0.0.1-1980] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2778] message:[UNAVAILABLE: io exception] +2026-05-08 16:43:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:43:26 [snail-job-grpc-client-executor-127.0.0.1-1981] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2779] message:[UNAVAILABLE: io exception] +2026-05-08 16:43:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:43:36 [snail-job-grpc-client-executor-127.0.0.1-1982] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2781] message:[UNAVAILABLE: io exception] +2026-05-08 16:43:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:43:46 [snail-job-grpc-client-executor-127.0.0.1-1984] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2782] message:[UNAVAILABLE: io exception] +2026-05-08 16:43:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:43:56 [snail-job-grpc-client-executor-127.0.0.1-1985] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2783] message:[UNAVAILABLE: io exception] +2026-05-08 16:44:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:44:06 [snail-job-grpc-client-executor-127.0.0.1-1986] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2784] message:[UNAVAILABLE: io exception] +2026-05-08 16:44:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:44:16 [snail-job-grpc-client-executor-127.0.0.1-1987] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2785] message:[UNAVAILABLE: io exception] +2026-05-08 16:44:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:44:26 [snail-job-grpc-client-executor-127.0.0.1-1988] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2786] message:[UNAVAILABLE: io exception] +2026-05-08 16:44:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:44:36 [snail-job-grpc-client-executor-127.0.0.1-1990] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2788] message:[UNAVAILABLE: io exception] +2026-05-08 16:44:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:44:46 [snail-job-grpc-client-executor-127.0.0.1-1991] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2789] message:[UNAVAILABLE: io exception] +2026-05-08 16:44:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:44:56 [snail-job-grpc-client-executor-127.0.0.1-1992] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2790] message:[UNAVAILABLE: io exception] +2026-05-08 16:45:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:45:06 [snail-job-grpc-client-executor-127.0.0.1-1993] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2791] message:[UNAVAILABLE: io exception] +2026-05-08 16:45:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:45:16 [snail-job-grpc-client-executor-127.0.0.1-1994] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2792] message:[UNAVAILABLE: io exception] +2026-05-08 16:45:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:45:26 [snail-job-grpc-client-executor-127.0.0.1-1995] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2793] message:[UNAVAILABLE: io exception] +2026-05-08 16:45:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:45:36 [snail-job-grpc-client-executor-127.0.0.1-1996] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2794] message:[UNAVAILABLE: io exception] +2026-05-08 16:45:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:45:46 [snail-job-grpc-client-executor-127.0.0.1-1998] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2796] message:[UNAVAILABLE: io exception] +2026-05-08 16:45:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:45:56 [snail-job-grpc-client-executor-127.0.0.1-1999] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2797] message:[UNAVAILABLE: io exception] +2026-05-08 16:46:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:46:06 [snail-job-grpc-client-executor-127.0.0.1-2000] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2798] message:[UNAVAILABLE: io exception] +2026-05-08 16:46:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:46:16 [snail-job-grpc-client-executor-127.0.0.1-2001] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2799] message:[UNAVAILABLE: io exception] +2026-05-08 16:46:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:46:26 [snail-job-grpc-client-executor-127.0.0.1-2002] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2800] message:[UNAVAILABLE: io exception] +2026-05-08 16:46:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:46:36 [snail-job-grpc-client-executor-127.0.0.1-2003] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2802] message:[UNAVAILABLE: io exception] +2026-05-08 16:46:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:46:46 [snail-job-grpc-client-executor-127.0.0.1-2005] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2803] message:[UNAVAILABLE: io exception] +2026-05-08 16:46:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:46:56 [snail-job-grpc-client-executor-127.0.0.1-2006] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2804] message:[UNAVAILABLE: io exception] +2026-05-08 16:47:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:47:06 [snail-job-grpc-client-executor-127.0.0.1-2007] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2805] message:[UNAVAILABLE: io exception] +2026-05-08 16:47:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:47:16 [snail-job-grpc-client-executor-127.0.0.1-2008] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2806] message:[UNAVAILABLE: io exception] +2026-05-08 16:47:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:47:26 [snail-job-grpc-client-executor-127.0.0.1-2009] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2807] message:[UNAVAILABLE: io exception] +2026-05-08 16:47:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:47:36 [snail-job-grpc-client-executor-127.0.0.1-2010] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2809] message:[UNAVAILABLE: io exception] +2026-05-08 16:47:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:47:46 [snail-job-grpc-client-executor-127.0.0.1-2012] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2810] message:[UNAVAILABLE: io exception] +2026-05-08 16:47:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:47:56 [snail-job-grpc-client-executor-127.0.0.1-2013] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2811] message:[UNAVAILABLE: io exception] +2026-05-08 16:48:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:48:06 [snail-job-grpc-client-executor-127.0.0.1-2014] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2812] message:[UNAVAILABLE: io exception] +2026-05-08 16:48:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:48:16 [snail-job-grpc-client-executor-127.0.0.1-2015] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2813] message:[UNAVAILABLE: io exception] +2026-05-08 16:48:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:48:26 [snail-job-grpc-client-executor-127.0.0.1-2016] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2814] message:[UNAVAILABLE: io exception] +2026-05-08 16:48:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:48:36 [snail-job-grpc-client-executor-127.0.0.1-2018] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2816] message:[UNAVAILABLE: io exception] +2026-05-08 16:48:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:48:46 [snail-job-grpc-client-executor-127.0.0.1-2019] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2817] message:[UNAVAILABLE: io exception] +2026-05-08 16:48:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:48:56 [snail-job-grpc-client-executor-127.0.0.1-2020] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2818] message:[UNAVAILABLE: io exception] +2026-05-08 16:49:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:49:06 [snail-job-grpc-client-executor-127.0.0.1-2021] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2819] message:[UNAVAILABLE: io exception] +2026-05-08 16:49:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:49:16 [snail-job-grpc-client-executor-127.0.0.1-2022] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2820] message:[UNAVAILABLE: io exception] +2026-05-08 16:49:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:49:26 [snail-job-grpc-client-executor-127.0.0.1-2023] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2821] message:[UNAVAILABLE: io exception] +2026-05-08 16:49:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:49:36 [snail-job-grpc-client-executor-127.0.0.1-2024] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2823] message:[UNAVAILABLE: io exception] +2026-05-08 16:49:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:49:46 [snail-job-grpc-client-executor-127.0.0.1-2026] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2824] message:[UNAVAILABLE: io exception] +2026-05-08 16:49:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:49:56 [snail-job-grpc-client-executor-127.0.0.1-2027] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2825] message:[UNAVAILABLE: io exception] +2026-05-08 16:50:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:50:06 [snail-job-grpc-client-executor-127.0.0.1-2028] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2826] message:[UNAVAILABLE: io exception] +2026-05-08 16:50:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:50:16 [snail-job-grpc-client-executor-127.0.0.1-2029] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2827] message:[UNAVAILABLE: io exception] +2026-05-08 16:50:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:50:26 [snail-job-grpc-client-executor-127.0.0.1-2030] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2828] message:[UNAVAILABLE: io exception] +2026-05-08 16:50:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:50:36 [snail-job-grpc-client-executor-127.0.0.1-2031] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2829] message:[UNAVAILABLE: io exception] +2026-05-08 16:50:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:50:46 [snail-job-grpc-client-executor-127.0.0.1-2033] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2831] message:[UNAVAILABLE: io exception] +2026-05-08 16:50:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:50:56 [snail-job-grpc-client-executor-127.0.0.1-2034] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2832] message:[UNAVAILABLE: io exception] +2026-05-08 16:51:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:51:06 [snail-job-grpc-client-executor-127.0.0.1-2035] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2833] message:[UNAVAILABLE: io exception] +2026-05-08 16:51:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:51:16 [snail-job-grpc-client-executor-127.0.0.1-2036] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2834] message:[UNAVAILABLE: io exception] +2026-05-08 16:51:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:51:26 [snail-job-grpc-client-executor-127.0.0.1-2037] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2835] message:[UNAVAILABLE: io exception] +2026-05-08 16:51:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:51:36 [snail-job-grpc-client-executor-127.0.0.1-2039] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2837] message:[UNAVAILABLE: io exception] +2026-05-08 16:51:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:51:46 [snail-job-grpc-client-executor-127.0.0.1-2040] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2838] message:[UNAVAILABLE: io exception] +2026-05-08 16:51:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:51:56 [snail-job-grpc-client-executor-127.0.0.1-2041] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2839] message:[UNAVAILABLE: io exception] +2026-05-08 16:52:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:52:06 [snail-job-grpc-client-executor-127.0.0.1-2042] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2840] message:[UNAVAILABLE: io exception] +2026-05-08 16:52:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:52:16 [snail-job-grpc-client-executor-127.0.0.1-2043] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2841] message:[UNAVAILABLE: io exception] +2026-05-08 16:52:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:52:26 [snail-job-grpc-client-executor-127.0.0.1-2044] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2842] message:[UNAVAILABLE: io exception] +2026-05-08 16:52:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:52:36 [snail-job-grpc-client-executor-127.0.0.1-2045] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2844] message:[UNAVAILABLE: io exception] +2026-05-08 16:52:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:52:46 [snail-job-grpc-client-executor-127.0.0.1-2047] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2845] message:[UNAVAILABLE: io exception] +2026-05-08 16:52:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:52:56 [snail-job-grpc-client-executor-127.0.0.1-2048] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2846] message:[UNAVAILABLE: io exception] +2026-05-08 16:53:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:53:06 [snail-job-grpc-client-executor-127.0.0.1-2049] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2847] message:[UNAVAILABLE: io exception] +2026-05-08 16:53:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:53:16 [snail-job-grpc-client-executor-127.0.0.1-2050] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2848] message:[UNAVAILABLE: io exception] +2026-05-08 16:53:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:53:26 [snail-job-grpc-client-executor-127.0.0.1-2051] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2849] message:[UNAVAILABLE: io exception] +2026-05-08 16:53:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:53:36 [snail-job-grpc-client-executor-127.0.0.1-2052] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2850] message:[UNAVAILABLE: io exception] +2026-05-08 16:53:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:53:46 [snail-job-grpc-client-executor-127.0.0.1-2054] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2852] message:[UNAVAILABLE: io exception] +2026-05-08 16:53:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:53:56 [snail-job-grpc-client-executor-127.0.0.1-2055] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2853] message:[UNAVAILABLE: io exception] +2026-05-08 16:54:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:54:06 [snail-job-grpc-client-executor-127.0.0.1-2056] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2854] message:[UNAVAILABLE: io exception] +2026-05-08 16:54:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:54:16 [snail-job-grpc-client-executor-127.0.0.1-2057] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2855] message:[UNAVAILABLE: io exception] +2026-05-08 16:54:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:54:26 [snail-job-grpc-client-executor-127.0.0.1-2058] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2856] message:[UNAVAILABLE: io exception] +2026-05-08 16:54:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:54:36 [snail-job-grpc-client-executor-127.0.0.1-2059] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2858] message:[UNAVAILABLE: io exception] +2026-05-08 16:54:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:54:46 [snail-job-grpc-client-executor-127.0.0.1-2061] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2859] message:[UNAVAILABLE: io exception] +2026-05-08 16:54:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:54:56 [snail-job-grpc-client-executor-127.0.0.1-2062] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2860] message:[UNAVAILABLE: io exception] +2026-05-08 16:55:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:55:06 [snail-job-grpc-client-executor-127.0.0.1-2063] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2861] message:[UNAVAILABLE: io exception] +2026-05-08 16:55:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:55:16 [snail-job-grpc-client-executor-127.0.0.1-2064] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2862] message:[UNAVAILABLE: io exception] +2026-05-08 16:55:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:55:26 [snail-job-grpc-client-executor-127.0.0.1-2065] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2863] message:[UNAVAILABLE: io exception] +2026-05-08 16:55:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:55:36 [snail-job-grpc-client-executor-127.0.0.1-2066] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2865] message:[UNAVAILABLE: io exception] +2026-05-08 16:55:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:55:46 [snail-job-grpc-client-executor-127.0.0.1-2068] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2866] message:[UNAVAILABLE: io exception] +2026-05-08 16:55:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:55:56 [snail-job-grpc-client-executor-127.0.0.1-2069] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2867] message:[UNAVAILABLE: io exception] +2026-05-08 16:56:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:56:06 [snail-job-grpc-client-executor-127.0.0.1-2070] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2868] message:[UNAVAILABLE: io exception] +2026-05-08 16:56:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:56:16 [snail-job-grpc-client-executor-127.0.0.1-2071] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2869] message:[UNAVAILABLE: io exception] +2026-05-08 16:56:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:56:26 [snail-job-grpc-client-executor-127.0.0.1-2072] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2870] message:[UNAVAILABLE: io exception] +2026-05-08 16:56:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:56:36 [snail-job-grpc-client-executor-127.0.0.1-2073] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2872] message:[UNAVAILABLE: io exception] +2026-05-08 16:56:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:56:46 [snail-job-grpc-client-executor-127.0.0.1-2075] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2873] message:[UNAVAILABLE: io exception] +2026-05-08 16:56:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:56:56 [snail-job-grpc-client-executor-127.0.0.1-2076] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2874] message:[UNAVAILABLE: io exception] +2026-05-08 16:57:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:57:06 [snail-job-grpc-client-executor-127.0.0.1-2077] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2875] message:[UNAVAILABLE: io exception] +2026-05-08 16:57:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:57:16 [snail-job-grpc-client-executor-127.0.0.1-2078] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2876] message:[UNAVAILABLE: io exception] +2026-05-08 16:57:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:57:26 [snail-job-grpc-client-executor-127.0.0.1-2079] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2877] message:[UNAVAILABLE: io exception] +2026-05-08 16:57:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:57:36 [snail-job-grpc-client-executor-127.0.0.1-2081] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2878] message:[UNAVAILABLE: io exception] +2026-05-08 16:57:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:57:46 [snail-job-grpc-client-executor-127.0.0.1-2082] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2880] message:[UNAVAILABLE: io exception] +2026-05-08 16:57:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:57:56 [snail-job-grpc-client-executor-127.0.0.1-2083] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2881] message:[UNAVAILABLE: io exception] +2026-05-08 16:58:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:58:06 [snail-job-grpc-client-executor-127.0.0.1-2084] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2882] message:[UNAVAILABLE: io exception] +2026-05-08 16:58:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:58:16 [snail-job-grpc-client-executor-127.0.0.1-2085] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2883] message:[UNAVAILABLE: io exception] +2026-05-08 16:58:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:58:26 [snail-job-grpc-client-executor-127.0.0.1-2086] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2884] message:[UNAVAILABLE: io exception] +2026-05-08 16:58:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:58:36 [snail-job-grpc-client-executor-127.0.0.1-2088] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2886] message:[UNAVAILABLE: io exception] +2026-05-08 16:58:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:58:46 [snail-job-grpc-client-executor-127.0.0.1-2089] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2887] message:[UNAVAILABLE: io exception] +2026-05-08 16:58:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:58:56 [snail-job-grpc-client-executor-127.0.0.1-2090] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2888] message:[UNAVAILABLE: io exception] +2026-05-08 16:59:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:59:06 [snail-job-grpc-client-executor-127.0.0.1-2091] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2889] message:[UNAVAILABLE: io exception] +2026-05-08 16:59:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:59:16 [snail-job-grpc-client-executor-127.0.0.1-2092] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2890] message:[UNAVAILABLE: io exception] +2026-05-08 16:59:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:59:26 [snail-job-grpc-client-executor-127.0.0.1-2093] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2891] message:[UNAVAILABLE: io exception] +2026-05-08 16:59:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:59:36 [snail-job-grpc-client-executor-127.0.0.1-2095] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2893] message:[UNAVAILABLE: io exception] +2026-05-08 16:59:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:59:46 [snail-job-grpc-client-executor-127.0.0.1-2096] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2894] message:[UNAVAILABLE: io exception] +2026-05-08 16:59:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 16:59:56 [snail-job-grpc-client-executor-127.0.0.1-2097] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2895] message:[UNAVAILABLE: io exception] +2026-05-08 17:00:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:00:06 [snail-job-grpc-client-executor-127.0.0.1-2098] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2896] message:[UNAVAILABLE: io exception] +2026-05-08 17:00:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:00:16 [snail-job-grpc-client-executor-127.0.0.1-2099] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2897] message:[UNAVAILABLE: io exception] +2026-05-08 17:00:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:00:26 [snail-job-grpc-client-executor-127.0.0.1-2100] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2898] message:[UNAVAILABLE: io exception] +2026-05-08 17:00:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:00:36 [snail-job-grpc-client-executor-127.0.0.1-2101] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2899] message:[UNAVAILABLE: io exception] +2026-05-08 17:00:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:00:46 [snail-job-grpc-client-executor-127.0.0.1-2103] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2901] message:[UNAVAILABLE: io exception] +2026-05-08 17:00:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:00:56 [snail-job-grpc-client-executor-127.0.0.1-2104] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2902] message:[UNAVAILABLE: io exception] +2026-05-08 17:01:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:01:06 [snail-job-grpc-client-executor-127.0.0.1-2105] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2903] message:[UNAVAILABLE: io exception] +2026-05-08 17:01:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:01:16 [snail-job-grpc-client-executor-127.0.0.1-2106] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2904] message:[UNAVAILABLE: io exception] +2026-05-08 17:01:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:01:26 [snail-job-grpc-client-executor-127.0.0.1-2107] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2905] message:[UNAVAILABLE: io exception] +2026-05-08 17:01:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:01:36 [snail-job-grpc-client-executor-127.0.0.1-2109] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2906] message:[UNAVAILABLE: io exception] +2026-05-08 17:01:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:01:46 [snail-job-grpc-client-executor-127.0.0.1-2110] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2908] message:[UNAVAILABLE: io exception] +2026-05-08 17:01:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:01:56 [snail-job-grpc-client-executor-127.0.0.1-2111] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2909] message:[UNAVAILABLE: io exception] +2026-05-08 17:02:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:02:06 [snail-job-grpc-client-executor-127.0.0.1-2112] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2910] message:[UNAVAILABLE: io exception] +2026-05-08 17:02:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:02:16 [snail-job-grpc-client-executor-127.0.0.1-2113] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2911] message:[UNAVAILABLE: io exception] +2026-05-08 17:02:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:02:26 [snail-job-grpc-client-executor-127.0.0.1-2114] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2912] message:[UNAVAILABLE: io exception] +2026-05-08 17:02:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:02:36 [snail-job-grpc-client-executor-127.0.0.1-2115] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2913] message:[UNAVAILABLE: io exception] +2026-05-08 17:02:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:02:46 [snail-job-grpc-client-executor-127.0.0.1-2117] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2915] message:[UNAVAILABLE: io exception] +2026-05-08 17:02:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:02:56 [snail-job-grpc-client-executor-127.0.0.1-2118] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2916] message:[UNAVAILABLE: io exception] +2026-05-08 17:03:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:03:06 [snail-job-grpc-client-executor-127.0.0.1-2119] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2917] message:[UNAVAILABLE: io exception] +2026-05-08 17:03:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:03:16 [snail-job-grpc-client-executor-127.0.0.1-2120] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2918] message:[UNAVAILABLE: io exception] +2026-05-08 17:03:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:03:26 [snail-job-grpc-client-executor-127.0.0.1-2121] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2919] message:[UNAVAILABLE: io exception] +2026-05-08 17:03:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:03:36 [snail-job-grpc-client-executor-127.0.0.1-2122] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2921] message:[UNAVAILABLE: io exception] +2026-05-08 17:03:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:03:46 [snail-job-grpc-client-executor-127.0.0.1-2124] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2922] message:[UNAVAILABLE: io exception] +2026-05-08 17:03:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:03:56 [snail-job-grpc-client-executor-127.0.0.1-2125] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2923] message:[UNAVAILABLE: io exception] +2026-05-08 17:04:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:04:06 [snail-job-grpc-client-executor-127.0.0.1-2126] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2924] message:[UNAVAILABLE: io exception] +2026-05-08 17:04:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:04:16 [snail-job-grpc-client-executor-127.0.0.1-2127] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2925] message:[UNAVAILABLE: io exception] +2026-05-08 17:04:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:04:26 [snail-job-grpc-client-executor-127.0.0.1-2128] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2926] message:[UNAVAILABLE: io exception] +2026-05-08 17:04:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:04:36 [snail-job-grpc-client-executor-127.0.0.1-2130] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2928] message:[UNAVAILABLE: io exception] +2026-05-08 17:04:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:04:46 [snail-job-grpc-client-executor-127.0.0.1-2131] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2929] message:[UNAVAILABLE: io exception] +2026-05-08 17:04:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:04:56 [snail-job-grpc-client-executor-127.0.0.1-2132] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2930] message:[UNAVAILABLE: io exception] +2026-05-08 17:05:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:05:06 [snail-job-grpc-client-executor-127.0.0.1-2133] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2931] message:[UNAVAILABLE: io exception] +2026-05-08 17:05:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:05:16 [snail-job-grpc-client-executor-127.0.0.1-2134] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2932] message:[UNAVAILABLE: io exception] +2026-05-08 17:05:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:05:26 [snail-job-grpc-client-executor-127.0.0.1-2135] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2933] message:[UNAVAILABLE: io exception] +2026-05-08 17:05:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:05:36 [snail-job-grpc-client-executor-127.0.0.1-2137] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2934] message:[UNAVAILABLE: io exception] +2026-05-08 17:05:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:05:46 [snail-job-grpc-client-executor-127.0.0.1-2138] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2936] message:[UNAVAILABLE: io exception] +2026-05-08 17:05:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:05:56 [snail-job-grpc-client-executor-127.0.0.1-2139] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2937] message:[UNAVAILABLE: io exception] +2026-05-08 17:06:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:06:06 [snail-job-grpc-client-executor-127.0.0.1-2140] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2938] message:[UNAVAILABLE: io exception] +2026-05-08 17:06:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:06:16 [snail-job-grpc-client-executor-127.0.0.1-2141] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2939] message:[UNAVAILABLE: io exception] +2026-05-08 17:06:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:06:26 [snail-job-grpc-client-executor-127.0.0.1-2142] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2940] message:[UNAVAILABLE: io exception] +2026-05-08 17:06:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:06:36 [snail-job-grpc-client-executor-127.0.0.1-2144] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2941] message:[UNAVAILABLE: io exception] +2026-05-08 17:06:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:06:46 [snail-job-grpc-client-executor-127.0.0.1-2145] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2943] message:[UNAVAILABLE: io exception] +2026-05-08 17:06:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:06:56 [snail-job-grpc-client-executor-127.0.0.1-2146] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2944] message:[UNAVAILABLE: io exception] +2026-05-08 17:07:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:07:06 [snail-job-grpc-client-executor-127.0.0.1-2147] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2945] message:[UNAVAILABLE: io exception] +2026-05-08 17:07:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:07:16 [snail-job-grpc-client-executor-127.0.0.1-2148] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2946] message:[UNAVAILABLE: io exception] +2026-05-08 17:07:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:07:26 [snail-job-grpc-client-executor-127.0.0.1-2149] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2947] message:[UNAVAILABLE: io exception] +2026-05-08 17:07:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:07:36 [snail-job-grpc-client-executor-127.0.0.1-2151] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2949] message:[UNAVAILABLE: io exception] +2026-05-08 17:07:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:07:46 [snail-job-grpc-client-executor-127.0.0.1-2152] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2950] message:[UNAVAILABLE: io exception] +2026-05-08 17:07:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:07:56 [snail-job-grpc-client-executor-127.0.0.1-2153] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2951] message:[UNAVAILABLE: io exception] +2026-05-08 17:08:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:08:06 [snail-job-grpc-client-executor-127.0.0.1-2154] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2952] message:[UNAVAILABLE: io exception] +2026-05-08 17:08:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:08:16 [snail-job-grpc-client-executor-127.0.0.1-2155] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2953] message:[UNAVAILABLE: io exception] +2026-05-08 17:08:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:08:26 [snail-job-grpc-client-executor-127.0.0.1-2156] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2954] message:[UNAVAILABLE: io exception] +2026-05-08 17:08:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:08:36 [snail-job-grpc-client-executor-127.0.0.1-2157] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2955] message:[UNAVAILABLE: io exception] +2026-05-08 17:08:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:08:46 [snail-job-grpc-client-executor-127.0.0.1-2159] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2957] message:[UNAVAILABLE: io exception] +2026-05-08 17:08:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:08:56 [snail-job-grpc-client-executor-127.0.0.1-2160] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2958] message:[UNAVAILABLE: io exception] +2026-05-08 17:09:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:09:06 [snail-job-grpc-client-executor-127.0.0.1-2161] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2959] message:[UNAVAILABLE: io exception] +2026-05-08 17:09:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:09:16 [snail-job-grpc-client-executor-127.0.0.1-2162] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2960] message:[UNAVAILABLE: io exception] +2026-05-08 17:09:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:09:26 [snail-job-grpc-client-executor-127.0.0.1-2163] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2961] message:[UNAVAILABLE: io exception] +2026-05-08 17:09:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:09:36 [snail-job-grpc-client-executor-127.0.0.1-2165] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2963] message:[UNAVAILABLE: io exception] +2026-05-08 17:09:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:09:46 [snail-job-grpc-client-executor-127.0.0.1-2166] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2964] message:[UNAVAILABLE: io exception] +2026-05-08 17:09:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:09:56 [snail-job-grpc-client-executor-127.0.0.1-2167] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2965] message:[UNAVAILABLE: io exception] +2026-05-08 17:10:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:10:06 [snail-job-grpc-client-executor-127.0.0.1-2168] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2966] message:[UNAVAILABLE: io exception] +2026-05-08 17:10:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:10:16 [snail-job-grpc-client-executor-127.0.0.1-2169] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2967] message:[UNAVAILABLE: io exception] +2026-05-08 17:10:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:10:26 [snail-job-grpc-client-executor-127.0.0.1-2170] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2968] message:[UNAVAILABLE: io exception] +2026-05-08 17:10:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:10:36 [snail-job-grpc-client-executor-127.0.0.1-2171] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2970] message:[UNAVAILABLE: io exception] +2026-05-08 17:10:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:10:46 [snail-job-grpc-client-executor-127.0.0.1-2173] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2971] message:[UNAVAILABLE: io exception] +2026-05-08 17:10:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:10:56 [snail-job-grpc-client-executor-127.0.0.1-2174] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2972] message:[UNAVAILABLE: io exception] +2026-05-08 17:11:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:11:06 [snail-job-grpc-client-executor-127.0.0.1-2175] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2973] message:[UNAVAILABLE: io exception] +2026-05-08 17:11:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:11:16 [snail-job-grpc-client-executor-127.0.0.1-2176] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2974] message:[UNAVAILABLE: io exception] +2026-05-08 17:11:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:11:26 [snail-job-grpc-client-executor-127.0.0.1-2177] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2975] message:[UNAVAILABLE: io exception] +2026-05-08 17:11:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:11:36 [snail-job-grpc-client-executor-127.0.0.1-2179] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2977] message:[UNAVAILABLE: io exception] +2026-05-08 17:11:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:11:46 [snail-job-grpc-client-executor-127.0.0.1-2180] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2978] message:[UNAVAILABLE: io exception] +2026-05-08 17:11:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:11:56 [snail-job-grpc-client-executor-127.0.0.1-2181] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2979] message:[UNAVAILABLE: io exception] +2026-05-08 17:12:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:12:06 [snail-job-grpc-client-executor-127.0.0.1-2182] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2980] message:[UNAVAILABLE: io exception] +2026-05-08 17:12:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:12:16 [snail-job-grpc-client-executor-127.0.0.1-2183] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2981] message:[UNAVAILABLE: io exception] +2026-05-08 17:12:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:12:26 [snail-job-grpc-client-executor-127.0.0.1-2184] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2982] message:[UNAVAILABLE: io exception] +2026-05-08 17:12:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:12:36 [snail-job-grpc-client-executor-127.0.0.1-2185] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2984] message:[UNAVAILABLE: io exception] +2026-05-08 17:12:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:12:46 [snail-job-grpc-client-executor-127.0.0.1-2187] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2985] message:[UNAVAILABLE: io exception] +2026-05-08 17:12:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:12:56 [snail-job-grpc-client-executor-127.0.0.1-2188] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2986] message:[UNAVAILABLE: io exception] +2026-05-08 17:13:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:13:06 [snail-job-grpc-client-executor-127.0.0.1-2189] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2987] message:[UNAVAILABLE: io exception] +2026-05-08 17:13:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:13:16 [snail-job-grpc-client-executor-127.0.0.1-2190] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2988] message:[UNAVAILABLE: io exception] +2026-05-08 17:13:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:13:26 [snail-job-grpc-client-executor-127.0.0.1-2191] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2989] message:[UNAVAILABLE: io exception] +2026-05-08 17:13:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:13:36 [snail-job-grpc-client-executor-127.0.0.1-2192] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2991] message:[UNAVAILABLE: io exception] +2026-05-08 17:13:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:13:46 [snail-job-grpc-client-executor-127.0.0.1-2194] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2992] message:[UNAVAILABLE: io exception] +2026-05-08 17:13:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:13:56 [snail-job-grpc-client-executor-127.0.0.1-2195] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2993] message:[UNAVAILABLE: io exception] +2026-05-08 17:14:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:14:06 [snail-job-grpc-client-executor-127.0.0.1-2196] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2994] message:[UNAVAILABLE: io exception] +2026-05-08 17:14:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:14:16 [snail-job-grpc-client-executor-127.0.0.1-2197] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2995] message:[UNAVAILABLE: io exception] +2026-05-08 17:14:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:14:26 [snail-job-grpc-client-executor-127.0.0.1-2198] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2996] message:[UNAVAILABLE: io exception] +2026-05-08 17:14:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:14:36 [snail-job-grpc-client-executor-127.0.0.1-2199] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2998] message:[UNAVAILABLE: io exception] +2026-05-08 17:14:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:14:46 [snail-job-grpc-client-executor-127.0.0.1-2201] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[2999] message:[UNAVAILABLE: io exception] +2026-05-08 17:14:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:14:56 [snail-job-grpc-client-executor-127.0.0.1-2202] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3000] message:[UNAVAILABLE: io exception] +2026-05-08 17:15:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:15:06 [snail-job-grpc-client-executor-127.0.0.1-2203] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3001] message:[UNAVAILABLE: io exception] +2026-05-08 17:15:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:15:16 [snail-job-grpc-client-executor-127.0.0.1-2204] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3002] message:[UNAVAILABLE: io exception] +2026-05-08 17:15:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:15:26 [snail-job-grpc-client-executor-127.0.0.1-2205] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3003] message:[UNAVAILABLE: io exception] +2026-05-08 17:15:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:15:36 [snail-job-grpc-client-executor-127.0.0.1-2206] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3004] message:[UNAVAILABLE: io exception] +2026-05-08 17:15:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:15:46 [snail-job-grpc-client-executor-127.0.0.1-2208] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3006] message:[UNAVAILABLE: io exception] +2026-05-08 17:15:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:15:56 [snail-job-grpc-client-executor-127.0.0.1-2209] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3007] message:[UNAVAILABLE: io exception] +2026-05-08 17:16:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:16:06 [snail-job-grpc-client-executor-127.0.0.1-2210] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3008] message:[UNAVAILABLE: io exception] +2026-05-08 17:16:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:16:16 [snail-job-grpc-client-executor-127.0.0.1-2211] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3009] message:[UNAVAILABLE: io exception] +2026-05-08 17:16:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:16:26 [snail-job-grpc-client-executor-127.0.0.1-2212] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3010] message:[UNAVAILABLE: io exception] +2026-05-08 17:16:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:16:36 [snail-job-grpc-client-executor-127.0.0.1-2214] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3012] message:[UNAVAILABLE: io exception] +2026-05-08 17:16:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:16:46 [snail-job-grpc-client-executor-127.0.0.1-2215] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3013] message:[UNAVAILABLE: io exception] +2026-05-08 17:16:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:16:56 [snail-job-grpc-client-executor-127.0.0.1-2216] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3014] message:[UNAVAILABLE: io exception] +2026-05-08 17:17:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:17:06 [snail-job-grpc-client-executor-127.0.0.1-2217] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3015] message:[UNAVAILABLE: io exception] +2026-05-08 17:17:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:17:16 [snail-job-grpc-client-executor-127.0.0.1-2218] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3016] message:[UNAVAILABLE: io exception] +2026-05-08 17:17:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:17:26 [snail-job-grpc-client-executor-127.0.0.1-2219] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3017] message:[UNAVAILABLE: io exception] +2026-05-08 17:17:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:17:36 [snail-job-grpc-client-executor-127.0.0.1-2221] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3018] message:[UNAVAILABLE: io exception] +2026-05-08 17:17:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:17:46 [snail-job-grpc-client-executor-127.0.0.1-2222] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3020] message:[UNAVAILABLE: io exception] +2026-05-08 17:17:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:17:56 [snail-job-grpc-client-executor-127.0.0.1-2223] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3021] message:[UNAVAILABLE: io exception] +2026-05-08 17:18:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:18:06 [snail-job-grpc-client-executor-127.0.0.1-2224] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3022] message:[UNAVAILABLE: io exception] +2026-05-08 17:18:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:18:16 [snail-job-grpc-client-executor-127.0.0.1-2225] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3023] message:[UNAVAILABLE: io exception] +2026-05-08 17:18:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:18:26 [snail-job-grpc-client-executor-127.0.0.1-2226] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3024] message:[UNAVAILABLE: io exception] +2026-05-08 17:18:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:18:36 [snail-job-grpc-client-executor-127.0.0.1-2228] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3026] message:[UNAVAILABLE: io exception] +2026-05-08 17:18:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:18:46 [snail-job-grpc-client-executor-127.0.0.1-2229] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3027] message:[UNAVAILABLE: io exception] +2026-05-08 17:18:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:18:56 [snail-job-grpc-client-executor-127.0.0.1-2230] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3028] message:[UNAVAILABLE: io exception] +2026-05-08 17:19:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:19:06 [snail-job-grpc-client-executor-127.0.0.1-2231] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3029] message:[UNAVAILABLE: io exception] +2026-05-08 17:19:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:19:16 [snail-job-grpc-client-executor-127.0.0.1-2232] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3030] message:[UNAVAILABLE: io exception] +2026-05-08 17:19:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:19:26 [snail-job-grpc-client-executor-127.0.0.1-2233] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3031] message:[UNAVAILABLE: io exception] +2026-05-08 17:19:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:19:36 [snail-job-grpc-client-executor-127.0.0.1-2234] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3032] message:[UNAVAILABLE: io exception] +2026-05-08 17:19:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:19:46 [snail-job-grpc-client-executor-127.0.0.1-2236] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3034] message:[UNAVAILABLE: io exception] +2026-05-08 17:19:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:19:56 [snail-job-grpc-client-executor-127.0.0.1-2237] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3035] message:[UNAVAILABLE: io exception] +2026-05-08 17:20:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:20:06 [snail-job-grpc-client-executor-127.0.0.1-2238] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3036] message:[UNAVAILABLE: io exception] +2026-05-08 17:20:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:20:16 [snail-job-grpc-client-executor-127.0.0.1-2239] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3037] message:[UNAVAILABLE: io exception] +2026-05-08 17:20:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:20:26 [snail-job-grpc-client-executor-127.0.0.1-2240] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3038] message:[UNAVAILABLE: io exception] +2026-05-08 17:20:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:20:36 [snail-job-grpc-client-executor-127.0.0.1-2241] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3039] message:[UNAVAILABLE: io exception] +2026-05-08 17:20:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:20:46 [snail-job-grpc-client-executor-127.0.0.1-2243] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3041] message:[UNAVAILABLE: io exception] +2026-05-08 17:20:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:20:56 [snail-job-grpc-client-executor-127.0.0.1-2244] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3042] message:[UNAVAILABLE: io exception] +2026-05-08 17:21:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:21:06 [snail-job-grpc-client-executor-127.0.0.1-2245] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3043] message:[UNAVAILABLE: io exception] +2026-05-08 17:21:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:21:16 [snail-job-grpc-client-executor-127.0.0.1-2246] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3044] message:[UNAVAILABLE: io exception] +2026-05-08 17:21:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:21:26 [snail-job-grpc-client-executor-127.0.0.1-2247] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3045] message:[UNAVAILABLE: io exception] +2026-05-08 17:21:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:21:36 [snail-job-grpc-client-executor-127.0.0.1-2248] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3046] message:[UNAVAILABLE: io exception] +2026-05-08 17:21:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:21:46 [snail-job-grpc-client-executor-127.0.0.1-2250] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3048] message:[UNAVAILABLE: io exception] +2026-05-08 17:21:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:21:56 [snail-job-grpc-client-executor-127.0.0.1-2251] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3049] message:[UNAVAILABLE: io exception] +2026-05-08 17:22:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:22:06 [snail-job-grpc-client-executor-127.0.0.1-2252] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3050] message:[UNAVAILABLE: io exception] +2026-05-08 17:22:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:22:16 [snail-job-grpc-client-executor-127.0.0.1-2253] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3051] message:[UNAVAILABLE: io exception] +2026-05-08 17:22:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:22:26 [snail-job-grpc-client-executor-127.0.0.1-2254] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3052] message:[UNAVAILABLE: io exception] +2026-05-08 17:22:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:22:36 [snail-job-grpc-client-executor-127.0.0.1-2256] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3053] message:[UNAVAILABLE: io exception] +2026-05-08 17:22:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:22:46 [snail-job-grpc-client-executor-127.0.0.1-2257] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3055] message:[UNAVAILABLE: io exception] +2026-05-08 17:22:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:22:56 [snail-job-grpc-client-executor-127.0.0.1-2258] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3056] message:[UNAVAILABLE: io exception] +2026-05-08 17:23:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:23:06 [snail-job-grpc-client-executor-127.0.0.1-2259] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3057] message:[UNAVAILABLE: io exception] +2026-05-08 17:23:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:23:16 [snail-job-grpc-client-executor-127.0.0.1-2260] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3058] message:[UNAVAILABLE: io exception] +2026-05-08 17:23:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:23:26 [snail-job-grpc-client-executor-127.0.0.1-2261] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3059] message:[UNAVAILABLE: io exception] +2026-05-08 17:23:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:23:36 [snail-job-grpc-client-executor-127.0.0.1-2262] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3061] message:[UNAVAILABLE: io exception] +2026-05-08 17:23:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:23:46 [snail-job-grpc-client-executor-127.0.0.1-2264] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3062] message:[UNAVAILABLE: io exception] +2026-05-08 17:23:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:23:56 [snail-job-grpc-client-executor-127.0.0.1-2265] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3063] message:[UNAVAILABLE: io exception] +2026-05-08 17:24:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:24:06 [snail-job-grpc-client-executor-127.0.0.1-2266] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3064] message:[UNAVAILABLE: io exception] +2026-05-08 17:24:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:24:16 [snail-job-grpc-client-executor-127.0.0.1-2267] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3065] message:[UNAVAILABLE: io exception] +2026-05-08 17:24:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:24:26 [snail-job-grpc-client-executor-127.0.0.1-2268] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3066] message:[UNAVAILABLE: io exception] +2026-05-08 17:24:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:24:36 [snail-job-grpc-client-executor-127.0.0.1-2270] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3068] message:[UNAVAILABLE: io exception] +2026-05-08 17:24:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:24:46 [snail-job-grpc-client-executor-127.0.0.1-2271] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3069] message:[UNAVAILABLE: io exception] +2026-05-08 17:24:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:24:56 [snail-job-grpc-client-executor-127.0.0.1-2272] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3070] message:[UNAVAILABLE: io exception] +2026-05-08 17:25:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:25:06 [snail-job-grpc-client-executor-127.0.0.1-2273] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3071] message:[UNAVAILABLE: io exception] +2026-05-08 17:25:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:25:16 [snail-job-grpc-client-executor-127.0.0.1-2274] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3072] message:[UNAVAILABLE: io exception] +2026-05-08 17:25:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:25:26 [snail-job-grpc-client-executor-127.0.0.1-2275] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3073] message:[UNAVAILABLE: io exception] +2026-05-08 17:25:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:25:36 [snail-job-grpc-client-executor-127.0.0.1-2276] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3075] message:[UNAVAILABLE: io exception] +2026-05-08 17:25:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:25:46 [snail-job-grpc-client-executor-127.0.0.1-2278] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3076] message:[UNAVAILABLE: io exception] +2026-05-08 17:25:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:25:56 [snail-job-grpc-client-executor-127.0.0.1-2279] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3077] message:[UNAVAILABLE: io exception] +2026-05-08 17:26:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:26:06 [snail-job-grpc-client-executor-127.0.0.1-2280] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3078] message:[UNAVAILABLE: io exception] +2026-05-08 17:26:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:26:16 [snail-job-grpc-client-executor-127.0.0.1-2281] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3079] message:[UNAVAILABLE: io exception] +2026-05-08 17:26:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:26:26 [snail-job-grpc-client-executor-127.0.0.1-2282] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3080] message:[UNAVAILABLE: io exception] +2026-05-08 17:26:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:26:36 [snail-job-grpc-client-executor-127.0.0.1-2283] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3082] message:[UNAVAILABLE: io exception] +2026-05-08 17:26:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:26:46 [snail-job-grpc-client-executor-127.0.0.1-2285] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3083] message:[UNAVAILABLE: io exception] +2026-05-08 17:26:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:26:56 [snail-job-grpc-client-executor-127.0.0.1-2286] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3084] message:[UNAVAILABLE: io exception] +2026-05-08 17:27:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:27:06 [snail-job-grpc-client-executor-127.0.0.1-2287] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3085] message:[UNAVAILABLE: io exception] +2026-05-08 17:27:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:27:16 [snail-job-grpc-client-executor-127.0.0.1-2288] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3086] message:[UNAVAILABLE: io exception] +2026-05-08 17:27:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:27:26 [snail-job-grpc-client-executor-127.0.0.1-2289] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3087] message:[UNAVAILABLE: io exception] +2026-05-08 17:27:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:27:36 [snail-job-grpc-client-executor-127.0.0.1-2290] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3089] message:[UNAVAILABLE: io exception] +2026-05-08 17:27:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:27:46 [snail-job-grpc-client-executor-127.0.0.1-2292] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3090] message:[UNAVAILABLE: io exception] +2026-05-08 17:27:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:27:56 [snail-job-grpc-client-executor-127.0.0.1-2293] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3091] message:[UNAVAILABLE: io exception] +2026-05-08 17:28:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:28:06 [snail-job-grpc-client-executor-127.0.0.1-2294] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3092] message:[UNAVAILABLE: io exception] +2026-05-08 17:28:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:28:16 [snail-job-grpc-client-executor-127.0.0.1-2295] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3093] message:[UNAVAILABLE: io exception] +2026-05-08 17:28:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:28:26 [snail-job-grpc-client-executor-127.0.0.1-2296] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3094] message:[UNAVAILABLE: io exception] +2026-05-08 17:28:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:28:36 [snail-job-grpc-client-executor-127.0.0.1-2297] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3096] message:[UNAVAILABLE: io exception] +2026-05-08 17:28:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:28:46 [snail-job-grpc-client-executor-127.0.0.1-2299] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3097] message:[UNAVAILABLE: io exception] +2026-05-08 17:28:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:28:56 [snail-job-grpc-client-executor-127.0.0.1-2300] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3098] message:[UNAVAILABLE: io exception] +2026-05-08 17:29:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:29:06 [snail-job-grpc-client-executor-127.0.0.1-2301] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3099] message:[UNAVAILABLE: io exception] +2026-05-08 17:29:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:29:16 [snail-job-grpc-client-executor-127.0.0.1-2302] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3100] message:[UNAVAILABLE: io exception] +2026-05-08 17:29:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:29:26 [snail-job-grpc-client-executor-127.0.0.1-2303] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3101] message:[UNAVAILABLE: io exception] +2026-05-08 17:29:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:29:36 [snail-job-grpc-client-executor-127.0.0.1-2304] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3102] message:[UNAVAILABLE: io exception] +2026-05-08 17:29:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:29:46 [snail-job-grpc-client-executor-127.0.0.1-2306] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3104] message:[UNAVAILABLE: io exception] +2026-05-08 17:29:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:29:56 [snail-job-grpc-client-executor-127.0.0.1-2307] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3105] message:[UNAVAILABLE: io exception] +2026-05-08 17:30:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:30:06 [snail-job-grpc-client-executor-127.0.0.1-2308] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3106] message:[UNAVAILABLE: io exception] +2026-05-08 17:30:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:30:16 [snail-job-grpc-client-executor-127.0.0.1-2309] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3107] message:[UNAVAILABLE: io exception] +2026-05-08 17:30:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:30:26 [snail-job-grpc-client-executor-127.0.0.1-2310] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3108] message:[UNAVAILABLE: io exception] +2026-05-08 17:30:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:30:36 [snail-job-grpc-client-executor-127.0.0.1-2312] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3110] message:[UNAVAILABLE: io exception] +2026-05-08 17:30:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:30:46 [snail-job-grpc-client-executor-127.0.0.1-2313] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3111] message:[UNAVAILABLE: io exception] +2026-05-08 17:30:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:30:56 [snail-job-grpc-client-executor-127.0.0.1-2314] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3112] message:[UNAVAILABLE: io exception] +2026-05-08 17:31:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:31:06 [snail-job-grpc-client-executor-127.0.0.1-2315] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3113] message:[UNAVAILABLE: io exception] +2026-05-08 17:31:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:31:16 [snail-job-grpc-client-executor-127.0.0.1-2316] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3114] message:[UNAVAILABLE: io exception] +2026-05-08 17:31:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:31:26 [snail-job-grpc-client-executor-127.0.0.1-2317] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3115] message:[UNAVAILABLE: io exception] +2026-05-08 17:31:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:31:36 [snail-job-grpc-client-executor-127.0.0.1-2318] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3116] message:[UNAVAILABLE: io exception] +2026-05-08 17:31:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:31:46 [snail-job-grpc-client-executor-127.0.0.1-2320] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3118] message:[UNAVAILABLE: io exception] +2026-05-08 17:31:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:31:56 [snail-job-grpc-client-executor-127.0.0.1-2321] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3119] message:[UNAVAILABLE: io exception] +2026-05-08 17:32:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:32:06 [snail-job-grpc-client-executor-127.0.0.1-2322] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3120] message:[UNAVAILABLE: io exception] +2026-05-08 17:32:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:32:16 [snail-job-grpc-client-executor-127.0.0.1-2323] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3121] message:[UNAVAILABLE: io exception] +2026-05-08 17:32:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:32:26 [snail-job-grpc-client-executor-127.0.0.1-2324] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3122] message:[UNAVAILABLE: io exception] +2026-05-08 17:32:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:32:36 [snail-job-grpc-client-executor-127.0.0.1-2325] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3124] message:[UNAVAILABLE: io exception] +2026-05-08 17:32:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:32:46 [snail-job-grpc-client-executor-127.0.0.1-2327] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3125] message:[UNAVAILABLE: io exception] +2026-05-08 17:32:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:32:56 [snail-job-grpc-client-executor-127.0.0.1-2328] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3126] message:[UNAVAILABLE: io exception] +2026-05-08 17:33:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:33:06 [snail-job-grpc-client-executor-127.0.0.1-2329] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3127] message:[UNAVAILABLE: io exception] +2026-05-08 17:33:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:33:16 [snail-job-grpc-client-executor-127.0.0.1-2330] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3128] message:[UNAVAILABLE: io exception] +2026-05-08 17:33:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:33:26 [snail-job-grpc-client-executor-127.0.0.1-2331] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3129] message:[UNAVAILABLE: io exception] +2026-05-08 17:33:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:33:36 [snail-job-grpc-client-executor-127.0.0.1-2333] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3130] message:[UNAVAILABLE: io exception] +2026-05-08 17:33:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:33:46 [snail-job-grpc-client-executor-127.0.0.1-2334] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3132] message:[UNAVAILABLE: io exception] +2026-05-08 17:33:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:33:56 [snail-job-grpc-client-executor-127.0.0.1-2335] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3133] message:[UNAVAILABLE: io exception] +2026-05-08 17:34:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:34:06 [snail-job-grpc-client-executor-127.0.0.1-2336] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3134] message:[UNAVAILABLE: io exception] +2026-05-08 17:34:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:34:16 [snail-job-grpc-client-executor-127.0.0.1-2337] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3135] message:[UNAVAILABLE: io exception] +2026-05-08 17:34:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:34:26 [snail-job-grpc-client-executor-127.0.0.1-2338] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3136] message:[UNAVAILABLE: io exception] +2026-05-08 17:34:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:34:36 [snail-job-grpc-client-executor-127.0.0.1-2339] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3137] message:[UNAVAILABLE: io exception] +2026-05-08 17:34:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:34:46 [snail-job-grpc-client-executor-127.0.0.1-2341] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3139] message:[UNAVAILABLE: io exception] +2026-05-08 17:34:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:34:56 [snail-job-grpc-client-executor-127.0.0.1-2342] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3140] message:[UNAVAILABLE: io exception] +2026-05-08 17:35:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:35:06 [snail-job-grpc-client-executor-127.0.0.1-2343] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3141] message:[UNAVAILABLE: io exception] +2026-05-08 17:35:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:35:16 [snail-job-grpc-client-executor-127.0.0.1-2344] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3142] message:[UNAVAILABLE: io exception] +2026-05-08 17:35:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:35:26 [snail-job-grpc-client-executor-127.0.0.1-2345] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3143] message:[UNAVAILABLE: io exception] +2026-05-08 17:35:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:35:36 [snail-job-grpc-client-executor-127.0.0.1-2346] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3144] message:[UNAVAILABLE: io exception] +2026-05-08 17:35:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:35:46 [snail-job-grpc-client-executor-127.0.0.1-2348] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3146] message:[UNAVAILABLE: io exception] +2026-05-08 17:35:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:35:56 [snail-job-grpc-client-executor-127.0.0.1-2349] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3147] message:[UNAVAILABLE: io exception] +2026-05-08 17:36:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:36:06 [snail-job-grpc-client-executor-127.0.0.1-2350] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3148] message:[UNAVAILABLE: io exception] +2026-05-08 17:36:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:36:16 [snail-job-grpc-client-executor-127.0.0.1-2351] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3149] message:[UNAVAILABLE: io exception] +2026-05-08 17:36:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:36:26 [snail-job-grpc-client-executor-127.0.0.1-2352] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3150] message:[UNAVAILABLE: io exception] +2026-05-08 17:36:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:36:36 [snail-job-grpc-client-executor-127.0.0.1-2353] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3151] message:[UNAVAILABLE: io exception] +2026-05-08 17:36:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:36:46 [snail-job-grpc-client-executor-127.0.0.1-2355] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3153] message:[UNAVAILABLE: io exception] +2026-05-08 17:36:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:36:56 [snail-job-grpc-client-executor-127.0.0.1-2356] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3154] message:[UNAVAILABLE: io exception] +2026-05-08 17:37:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:37:06 [snail-job-grpc-client-executor-127.0.0.1-2357] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3155] message:[UNAVAILABLE: io exception] +2026-05-08 17:37:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:37:16 [snail-job-grpc-client-executor-127.0.0.1-2358] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3156] message:[UNAVAILABLE: io exception] +2026-05-08 17:37:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:37:26 [snail-job-grpc-client-executor-127.0.0.1-2359] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3157] message:[UNAVAILABLE: io exception] +2026-05-08 17:37:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:37:36 [snail-job-grpc-client-executor-127.0.0.1-2360] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3158] message:[UNAVAILABLE: io exception] +2026-05-08 17:37:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:37:46 [snail-job-grpc-client-executor-127.0.0.1-2362] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3160] message:[UNAVAILABLE: io exception] +2026-05-08 17:37:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:37:56 [snail-job-grpc-client-executor-127.0.0.1-2363] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3161] message:[UNAVAILABLE: io exception] +2026-05-08 17:38:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:38:06 [snail-job-grpc-client-executor-127.0.0.1-2364] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3162] message:[UNAVAILABLE: io exception] +2026-05-08 17:38:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:38:16 [snail-job-grpc-client-executor-127.0.0.1-2365] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3163] message:[UNAVAILABLE: io exception] +2026-05-08 17:38:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:38:26 [snail-job-grpc-client-executor-127.0.0.1-2366] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3164] message:[UNAVAILABLE: io exception] +2026-05-08 17:38:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:38:36 [snail-job-grpc-client-executor-127.0.0.1-2367] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3165] message:[UNAVAILABLE: io exception] +2026-05-08 17:38:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:38:46 [snail-job-grpc-client-executor-127.0.0.1-2369] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3167] message:[UNAVAILABLE: io exception] +2026-05-08 17:38:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:38:56 [snail-job-grpc-client-executor-127.0.0.1-2370] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3168] message:[UNAVAILABLE: io exception] +2026-05-08 17:39:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:39:06 [snail-job-grpc-client-executor-127.0.0.1-2371] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3169] message:[UNAVAILABLE: io exception] +2026-05-08 17:39:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:39:16 [snail-job-grpc-client-executor-127.0.0.1-2372] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3170] message:[UNAVAILABLE: io exception] +2026-05-08 17:39:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:39:26 [snail-job-grpc-client-executor-127.0.0.1-2373] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3171] message:[UNAVAILABLE: io exception] +2026-05-08 17:39:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:39:36 [snail-job-grpc-client-executor-127.0.0.1-2374] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3172] message:[UNAVAILABLE: io exception] +2026-05-08 17:39:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:39:46 [snail-job-grpc-client-executor-127.0.0.1-2376] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3174] message:[UNAVAILABLE: io exception] +2026-05-08 17:39:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:39:56 [snail-job-grpc-client-executor-127.0.0.1-2377] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3175] message:[UNAVAILABLE: io exception] +2026-05-08 17:40:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:40:06 [snail-job-grpc-client-executor-127.0.0.1-2378] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3176] message:[UNAVAILABLE: io exception] +2026-05-08 17:40:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:40:16 [snail-job-grpc-client-executor-127.0.0.1-2379] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3177] message:[UNAVAILABLE: io exception] +2026-05-08 17:40:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:40:26 [snail-job-grpc-client-executor-127.0.0.1-2380] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3178] message:[UNAVAILABLE: io exception] +2026-05-08 17:40:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:40:36 [snail-job-grpc-client-executor-127.0.0.1-2382] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3180] message:[UNAVAILABLE: io exception] +2026-05-08 17:40:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:40:46 [snail-job-grpc-client-executor-127.0.0.1-2383] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3181] message:[UNAVAILABLE: io exception] +2026-05-08 17:40:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:40:56 [snail-job-grpc-client-executor-127.0.0.1-2384] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3182] message:[UNAVAILABLE: io exception] +2026-05-08 17:41:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:41:06 [snail-job-grpc-client-executor-127.0.0.1-2385] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3183] message:[UNAVAILABLE: io exception] +2026-05-08 17:41:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:41:16 [snail-job-grpc-client-executor-127.0.0.1-2386] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3184] message:[UNAVAILABLE: io exception] +2026-05-08 17:41:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:41:26 [snail-job-grpc-client-executor-127.0.0.1-2387] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3185] message:[UNAVAILABLE: io exception] +2026-05-08 17:41:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:41:36 [snail-job-grpc-client-executor-127.0.0.1-2388] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3186] message:[UNAVAILABLE: io exception] +2026-05-08 17:41:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:41:46 [snail-job-grpc-client-executor-127.0.0.1-2390] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3188] message:[UNAVAILABLE: io exception] +2026-05-08 17:41:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:41:56 [snail-job-grpc-client-executor-127.0.0.1-2391] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3189] message:[UNAVAILABLE: io exception] +2026-05-08 17:42:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:42:06 [snail-job-grpc-client-executor-127.0.0.1-2392] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3190] message:[UNAVAILABLE: io exception] +2026-05-08 17:42:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:42:16 [snail-job-grpc-client-executor-127.0.0.1-2393] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3191] message:[UNAVAILABLE: io exception] +2026-05-08 17:42:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:42:26 [snail-job-grpc-client-executor-127.0.0.1-2394] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3192] message:[UNAVAILABLE: io exception] +2026-05-08 17:42:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:42:36 [snail-job-grpc-client-executor-127.0.0.1-2395] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3194] message:[UNAVAILABLE: io exception] +2026-05-08 17:42:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:42:46 [snail-job-grpc-client-executor-127.0.0.1-2397] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3195] message:[UNAVAILABLE: io exception] +2026-05-08 17:42:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:42:56 [snail-job-grpc-client-executor-127.0.0.1-2398] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3196] message:[UNAVAILABLE: io exception] +2026-05-08 17:43:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:43:06 [snail-job-grpc-client-executor-127.0.0.1-2399] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3197] message:[UNAVAILABLE: io exception] +2026-05-08 17:43:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:43:16 [snail-job-grpc-client-executor-127.0.0.1-2400] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3198] message:[UNAVAILABLE: io exception] +2026-05-08 17:43:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:43:26 [snail-job-grpc-client-executor-127.0.0.1-2401] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3199] message:[UNAVAILABLE: io exception] +2026-05-08 17:43:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:43:36 [snail-job-grpc-client-executor-127.0.0.1-2403] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3200] message:[UNAVAILABLE: io exception] +2026-05-08 17:43:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:43:46 [snail-job-grpc-client-executor-127.0.0.1-2404] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3202] message:[UNAVAILABLE: io exception] +2026-05-08 17:43:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:43:56 [snail-job-grpc-client-executor-127.0.0.1-2405] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3203] message:[UNAVAILABLE: io exception] +2026-05-08 17:44:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:44:06 [snail-job-grpc-client-executor-127.0.0.1-2406] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3204] message:[UNAVAILABLE: io exception] +2026-05-08 17:44:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:44:16 [snail-job-grpc-client-executor-127.0.0.1-2407] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3205] message:[UNAVAILABLE: io exception] +2026-05-08 17:44:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:44:26 [snail-job-grpc-client-executor-127.0.0.1-2408] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3206] message:[UNAVAILABLE: io exception] +2026-05-08 17:44:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:44:36 [snail-job-grpc-client-executor-127.0.0.1-2410] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3207] message:[UNAVAILABLE: io exception] +2026-05-08 17:44:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:44:46 [snail-job-grpc-client-executor-127.0.0.1-2411] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3209] message:[UNAVAILABLE: io exception] +2026-05-08 17:44:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:44:56 [snail-job-grpc-client-executor-127.0.0.1-2412] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3210] message:[UNAVAILABLE: io exception] +2026-05-08 17:45:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:45:06 [snail-job-grpc-client-executor-127.0.0.1-2413] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3211] message:[UNAVAILABLE: io exception] +2026-05-08 17:45:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:45:16 [snail-job-grpc-client-executor-127.0.0.1-2414] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3212] message:[UNAVAILABLE: io exception] +2026-05-08 17:45:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:45:26 [snail-job-grpc-client-executor-127.0.0.1-2415] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3213] message:[UNAVAILABLE: io exception] +2026-05-08 17:45:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:45:36 [snail-job-grpc-client-executor-127.0.0.1-2416] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3214] message:[UNAVAILABLE: io exception] +2026-05-08 17:45:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:45:46 [snail-job-grpc-client-executor-127.0.0.1-2418] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3216] message:[UNAVAILABLE: io exception] +2026-05-08 17:45:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:45:56 [snail-job-grpc-client-executor-127.0.0.1-2419] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3217] message:[UNAVAILABLE: io exception] +2026-05-08 17:46:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:46:06 [snail-job-grpc-client-executor-127.0.0.1-2420] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3218] message:[UNAVAILABLE: io exception] +2026-05-08 17:46:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:46:16 [snail-job-grpc-client-executor-127.0.0.1-2421] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3219] message:[UNAVAILABLE: io exception] +2026-05-08 17:46:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:46:26 [snail-job-grpc-client-executor-127.0.0.1-2422] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3220] message:[UNAVAILABLE: io exception] +2026-05-08 17:46:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:46:36 [snail-job-grpc-client-executor-127.0.0.1-2423] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3222] message:[UNAVAILABLE: io exception] +2026-05-08 17:46:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:46:46 [snail-job-grpc-client-executor-127.0.0.1-2425] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3223] message:[UNAVAILABLE: io exception] +2026-05-08 17:46:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:46:56 [snail-job-grpc-client-executor-127.0.0.1-2426] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3224] message:[UNAVAILABLE: io exception] +2026-05-08 17:47:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:47:06 [snail-job-grpc-client-executor-127.0.0.1-2427] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3225] message:[UNAVAILABLE: io exception] +2026-05-08 17:47:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:47:16 [snail-job-grpc-client-executor-127.0.0.1-2428] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3226] message:[UNAVAILABLE: io exception] +2026-05-08 17:47:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:47:26 [snail-job-grpc-client-executor-127.0.0.1-2429] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3227] message:[UNAVAILABLE: io exception] +2026-05-08 17:47:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:47:36 [snail-job-grpc-client-executor-127.0.0.1-2430] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3228] message:[UNAVAILABLE: io exception] +2026-05-08 17:47:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:47:46 [snail-job-grpc-client-executor-127.0.0.1-2432] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3230] message:[UNAVAILABLE: io exception] +2026-05-08 17:47:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:47:56 [snail-job-grpc-client-executor-127.0.0.1-2433] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3231] message:[UNAVAILABLE: io exception] +2026-05-08 17:48:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:48:06 [snail-job-grpc-client-executor-127.0.0.1-2434] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3232] message:[UNAVAILABLE: io exception] +2026-05-08 17:48:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:48:16 [snail-job-grpc-client-executor-127.0.0.1-2435] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3233] message:[UNAVAILABLE: io exception] +2026-05-08 17:48:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:48:26 [snail-job-grpc-client-executor-127.0.0.1-2436] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3234] message:[UNAVAILABLE: io exception] +2026-05-08 17:48:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:48:36 [snail-job-grpc-client-executor-127.0.0.1-2437] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3235] message:[UNAVAILABLE: io exception] +2026-05-08 17:48:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:48:46 [snail-job-grpc-client-executor-127.0.0.1-2439] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3237] message:[UNAVAILABLE: io exception] +2026-05-08 17:48:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:48:56 [snail-job-grpc-client-executor-127.0.0.1-2440] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3238] message:[UNAVAILABLE: io exception] +2026-05-08 17:49:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:49:06 [snail-job-grpc-client-executor-127.0.0.1-2441] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3239] message:[UNAVAILABLE: io exception] +2026-05-08 17:49:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:49:16 [snail-job-grpc-client-executor-127.0.0.1-2442] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3240] message:[UNAVAILABLE: io exception] +2026-05-08 17:49:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:49:26 [snail-job-grpc-client-executor-127.0.0.1-2443] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3241] message:[UNAVAILABLE: io exception] +2026-05-08 17:49:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:49:36 [snail-job-grpc-client-executor-127.0.0.1-2444] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3242] message:[UNAVAILABLE: io exception] +2026-05-08 17:49:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:49:46 [snail-job-grpc-client-executor-127.0.0.1-2446] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3244] message:[UNAVAILABLE: io exception] +2026-05-08 17:49:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:49:56 [snail-job-grpc-client-executor-127.0.0.1-2447] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3245] message:[UNAVAILABLE: io exception] +2026-05-08 17:50:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:50:06 [snail-job-grpc-client-executor-127.0.0.1-2448] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3246] message:[UNAVAILABLE: io exception] +2026-05-08 17:50:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:50:16 [snail-job-grpc-client-executor-127.0.0.1-2449] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3247] message:[UNAVAILABLE: io exception] +2026-05-08 17:50:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:50:26 [snail-job-grpc-client-executor-127.0.0.1-2450] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3248] message:[UNAVAILABLE: io exception] +2026-05-08 17:50:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:50:36 [snail-job-grpc-client-executor-127.0.0.1-2452] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3250] message:[UNAVAILABLE: io exception] +2026-05-08 17:50:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:50:46 [snail-job-grpc-client-executor-127.0.0.1-2453] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3251] message:[UNAVAILABLE: io exception] +2026-05-08 17:50:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:50:56 [snail-job-grpc-client-executor-127.0.0.1-2454] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3252] message:[UNAVAILABLE: io exception] +2026-05-08 17:51:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:51:06 [snail-job-grpc-client-executor-127.0.0.1-2455] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3253] message:[UNAVAILABLE: io exception] +2026-05-08 17:51:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:51:16 [snail-job-grpc-client-executor-127.0.0.1-2456] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3254] message:[UNAVAILABLE: io exception] +2026-05-08 17:51:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:51:26 [snail-job-grpc-client-executor-127.0.0.1-2457] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3255] message:[UNAVAILABLE: io exception] +2026-05-08 17:51:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:51:36 [snail-job-grpc-client-executor-127.0.0.1-2459] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3256] message:[UNAVAILABLE: io exception] +2026-05-08 17:51:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:51:46 [snail-job-grpc-client-executor-127.0.0.1-2460] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3258] message:[UNAVAILABLE: io exception] +2026-05-08 17:51:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:51:56 [snail-job-grpc-client-executor-127.0.0.1-2461] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3259] message:[UNAVAILABLE: io exception] +2026-05-08 17:52:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:52:06 [snail-job-grpc-client-executor-127.0.0.1-2462] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3260] message:[UNAVAILABLE: io exception] +2026-05-08 17:52:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:52:16 [snail-job-grpc-client-executor-127.0.0.1-2463] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3261] message:[UNAVAILABLE: io exception] +2026-05-08 17:52:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:52:26 [snail-job-grpc-client-executor-127.0.0.1-2464] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3262] message:[UNAVAILABLE: io exception] +2026-05-08 17:52:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:52:36 [snail-job-grpc-client-executor-127.0.0.1-2465] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3263] message:[UNAVAILABLE: io exception] +2026-05-08 17:52:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:52:46 [snail-job-grpc-client-executor-127.0.0.1-2467] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3265] message:[UNAVAILABLE: io exception] +2026-05-08 17:52:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:52:56 [snail-job-grpc-client-executor-127.0.0.1-2468] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3266] message:[UNAVAILABLE: io exception] +2026-05-08 17:53:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:53:06 [snail-job-grpc-client-executor-127.0.0.1-2469] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3267] message:[UNAVAILABLE: io exception] +2026-05-08 17:53:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:53:16 [snail-job-grpc-client-executor-127.0.0.1-2470] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3268] message:[UNAVAILABLE: io exception] +2026-05-08 17:53:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:53:26 [snail-job-grpc-client-executor-127.0.0.1-2471] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3269] message:[UNAVAILABLE: io exception] +2026-05-08 17:53:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:53:36 [snail-job-grpc-client-executor-127.0.0.1-2473] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3270] message:[UNAVAILABLE: io exception] +2026-05-08 17:53:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:53:46 [snail-job-grpc-client-executor-127.0.0.1-2474] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3272] message:[UNAVAILABLE: io exception] +2026-05-08 17:53:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:53:56 [snail-job-grpc-client-executor-127.0.0.1-2475] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3273] message:[UNAVAILABLE: io exception] +2026-05-08 17:54:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:54:06 [snail-job-grpc-client-executor-127.0.0.1-2476] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3274] message:[UNAVAILABLE: io exception] +2026-05-08 17:54:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:54:16 [snail-job-grpc-client-executor-127.0.0.1-2477] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3275] message:[UNAVAILABLE: io exception] +2026-05-08 17:54:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:54:26 [snail-job-grpc-client-executor-127.0.0.1-2478] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3276] message:[UNAVAILABLE: io exception] +2026-05-08 17:54:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:54:36 [snail-job-grpc-client-executor-127.0.0.1-2479] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3277] message:[UNAVAILABLE: io exception] +2026-05-08 17:54:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:54:46 [snail-job-grpc-client-executor-127.0.0.1-2481] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3279] message:[UNAVAILABLE: io exception] +2026-05-08 17:54:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:54:56 [snail-job-grpc-client-executor-127.0.0.1-2482] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3280] message:[UNAVAILABLE: io exception] +2026-05-08 17:55:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:55:06 [snail-job-grpc-client-executor-127.0.0.1-2483] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3281] message:[UNAVAILABLE: io exception] +2026-05-08 17:55:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:55:16 [snail-job-grpc-client-executor-127.0.0.1-2484] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3282] message:[UNAVAILABLE: io exception] +2026-05-08 17:55:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:55:26 [snail-job-grpc-client-executor-127.0.0.1-2485] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3283] message:[UNAVAILABLE: io exception] +2026-05-08 17:55:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:55:36 [snail-job-grpc-client-executor-127.0.0.1-2486] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3284] message:[UNAVAILABLE: io exception] +2026-05-08 17:55:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:55:46 [snail-job-grpc-client-executor-127.0.0.1-2488] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3286] message:[UNAVAILABLE: io exception] +2026-05-08 17:55:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:55:56 [snail-job-grpc-client-executor-127.0.0.1-2489] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3287] message:[UNAVAILABLE: io exception] +2026-05-08 17:56:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:56:06 [snail-job-grpc-client-executor-127.0.0.1-2490] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3288] message:[UNAVAILABLE: io exception] +2026-05-08 17:56:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:56:16 [snail-job-grpc-client-executor-127.0.0.1-2491] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3289] message:[UNAVAILABLE: io exception] +2026-05-08 17:56:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:56:26 [snail-job-grpc-client-executor-127.0.0.1-2492] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3290] message:[UNAVAILABLE: io exception] +2026-05-08 17:56:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:56:36 [snail-job-grpc-client-executor-127.0.0.1-2493] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3291] message:[UNAVAILABLE: io exception] +2026-05-08 17:56:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:56:46 [snail-job-grpc-client-executor-127.0.0.1-2495] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3293] message:[UNAVAILABLE: io exception] +2026-05-08 17:56:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:56:56 [snail-job-grpc-client-executor-127.0.0.1-2496] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3294] message:[UNAVAILABLE: io exception] +2026-05-08 17:57:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:57:06 [snail-job-grpc-client-executor-127.0.0.1-2497] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3295] message:[UNAVAILABLE: io exception] +2026-05-08 17:57:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:57:16 [snail-job-grpc-client-executor-127.0.0.1-2498] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3296] message:[UNAVAILABLE: io exception] +2026-05-08 17:57:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:57:26 [snail-job-grpc-client-executor-127.0.0.1-2499] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3297] message:[UNAVAILABLE: io exception] +2026-05-08 17:57:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:57:36 [snail-job-grpc-client-executor-127.0.0.1-2500] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3299] message:[UNAVAILABLE: io exception] +2026-05-08 17:57:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:57:46 [snail-job-grpc-client-executor-127.0.0.1-2502] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3300] message:[UNAVAILABLE: io exception] +2026-05-08 17:57:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:57:56 [snail-job-grpc-client-executor-127.0.0.1-2503] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3301] message:[UNAVAILABLE: io exception] +2026-05-08 17:58:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:58:06 [snail-job-grpc-client-executor-127.0.0.1-2504] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3302] message:[UNAVAILABLE: io exception] +2026-05-08 17:58:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:58:16 [snail-job-grpc-client-executor-127.0.0.1-2505] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3303] message:[UNAVAILABLE: io exception] +2026-05-08 17:58:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:58:26 [snail-job-grpc-client-executor-127.0.0.1-2506] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3304] message:[UNAVAILABLE: io exception] +2026-05-08 17:58:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:58:36 [snail-job-grpc-client-executor-127.0.0.1-2507] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3306] message:[UNAVAILABLE: io exception] +2026-05-08 17:58:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:58:46 [snail-job-grpc-client-executor-127.0.0.1-2509] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3307] message:[UNAVAILABLE: io exception] +2026-05-08 17:58:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:58:56 [snail-job-grpc-client-executor-127.0.0.1-2510] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3308] message:[UNAVAILABLE: io exception] +2026-05-08 17:59:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:59:06 [snail-job-grpc-client-executor-127.0.0.1-2511] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3309] message:[UNAVAILABLE: io exception] +2026-05-08 17:59:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:59:16 [snail-job-grpc-client-executor-127.0.0.1-2512] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3310] message:[UNAVAILABLE: io exception] +2026-05-08 17:59:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:59:26 [snail-job-grpc-client-executor-127.0.0.1-2513] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3311] message:[UNAVAILABLE: io exception] +2026-05-08 17:59:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:59:36 [snail-job-grpc-client-executor-127.0.0.1-2514] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3312] message:[UNAVAILABLE: io exception] +2026-05-08 17:59:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:59:46 [snail-job-grpc-client-executor-127.0.0.1-2516] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3314] message:[UNAVAILABLE: io exception] +2026-05-08 17:59:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 17:59:56 [snail-job-grpc-client-executor-127.0.0.1-2517] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3315] message:[UNAVAILABLE: io exception] +2026-05-08 18:00:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:00:06 [snail-job-grpc-client-executor-127.0.0.1-2518] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3316] message:[UNAVAILABLE: io exception] +2026-05-08 18:00:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:00:16 [snail-job-grpc-client-executor-127.0.0.1-2519] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3317] message:[UNAVAILABLE: io exception] +2026-05-08 18:00:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:00:26 [snail-job-grpc-client-executor-127.0.0.1-2520] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3318] message:[UNAVAILABLE: io exception] +2026-05-08 18:00:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:00:36 [snail-job-grpc-client-executor-127.0.0.1-2521] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3320] message:[UNAVAILABLE: io exception] +2026-05-08 18:00:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:00:46 [snail-job-grpc-client-executor-127.0.0.1-2523] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3321] message:[UNAVAILABLE: io exception] +2026-05-08 18:00:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:00:56 [snail-job-grpc-client-executor-127.0.0.1-2524] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3322] message:[UNAVAILABLE: io exception] +2026-05-08 18:01:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:01:06 [snail-job-grpc-client-executor-127.0.0.1-2525] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3323] message:[UNAVAILABLE: io exception] +2026-05-08 18:01:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:01:16 [snail-job-grpc-client-executor-127.0.0.1-2526] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3324] message:[UNAVAILABLE: io exception] +2026-05-08 18:01:26 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:01:26 [snail-job-grpc-client-executor-127.0.0.1-2527] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3325] message:[UNAVAILABLE: io exception] +2026-05-08 18:01:36 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:01:36 [snail-job-grpc-client-executor-127.0.0.1-2528] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3327] message:[UNAVAILABLE: io exception] +2026-05-08 18:01:46 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:01:46 [snail-job-grpc-client-executor-127.0.0.1-2530] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3328] message:[UNAVAILABLE: io exception] +2026-05-08 18:01:56 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:01:56 [snail-job-grpc-client-executor-127.0.0.1-2531] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3329] message:[UNAVAILABLE: io exception] +2026-05-08 18:02:06 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:02:06 [snail-job-grpc-client-executor-127.0.0.1-2532] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3330] message:[UNAVAILABLE: io exception] +2026-05-08 18:02:16 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-08 18:02:16 [snail-job-grpc-client-executor-127.0.0.1-2533] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[3331] message:[UNAVAILABLE: io exception] diff --git a/logs/sys-console.log b/logs/sys-console.log index ef190a9..ff79544 100644 --- a/logs/sys-console.log +++ b/logs/sys-console.log @@ -2014,3 +2014,93 @@ Caused by: java.nio.channels.ClosedChannelException 2026-05-09 10:10:00 [snail-job-grpc-client-executor-127.0.0.1-134] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[134] message:[UNAVAILABLE: io exception] 2026-05-09 10:10:10 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... 2026-05-09 10:10:10 [snail-job-grpc-client-executor-127.0.0.1-136] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[136] message:[UNAVAILABLE: io exception] +2026-05-09 10:10:20 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:10:20 [snail-job-grpc-client-executor-127.0.0.1-137] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[137] message:[UNAVAILABLE: io exception] +2026-05-09 10:10:30 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:10:30 [snail-job-grpc-client-executor-127.0.0.1-138] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[138] message:[UNAVAILABLE: io exception] +2026-05-09 10:10:40 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:10:40 [snail-job-grpc-client-executor-127.0.0.1-139] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[139] message:[UNAVAILABLE: io exception] +2026-05-09 10:10:50 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:10:50 [snail-job-grpc-client-executor-127.0.0.1-140] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[140] message:[UNAVAILABLE: io exception] +2026-05-09 10:11:00 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:11:00 [snail-job-grpc-client-executor-127.0.0.1-142] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[141] message:[UNAVAILABLE: io exception] +2026-05-09 10:11:10 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:11:10 [snail-job-grpc-client-executor-127.0.0.1-143] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[143] message:[UNAVAILABLE: io exception] +2026-05-09 10:11:20 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:11:20 [snail-job-grpc-client-executor-127.0.0.1-144] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[144] message:[UNAVAILABLE: io exception] +2026-05-09 10:11:30 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:11:30 [snail-job-grpc-client-executor-127.0.0.1-145] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[145] message:[UNAVAILABLE: io exception] +2026-05-09 10:11:40 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:11:40 [snail-job-grpc-client-executor-127.0.0.1-146] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[146] message:[UNAVAILABLE: io exception] +2026-05-09 10:11:50 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:11:50 [snail-job-grpc-client-executor-127.0.0.1-147] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[147] message:[UNAVAILABLE: io exception] +2026-05-09 10:12:00 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:12:00 [snail-job-grpc-client-executor-127.0.0.1-148] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[148] message:[UNAVAILABLE: io exception] +2026-05-09 10:12:10 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:12:10 [snail-job-grpc-client-executor-127.0.0.1-150] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[150] message:[UNAVAILABLE: io exception] +2026-05-09 10:12:20 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:12:20 [snail-job-grpc-client-executor-127.0.0.1-151] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[151] message:[UNAVAILABLE: io exception] +2026-05-09 10:12:30 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:12:30 [snail-job-grpc-client-executor-127.0.0.1-152] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[152] message:[UNAVAILABLE: io exception] +2026-05-09 10:12:40 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:12:40 [snail-job-grpc-client-executor-127.0.0.1-153] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[153] message:[UNAVAILABLE: io exception] +2026-05-09 10:12:50 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:12:50 [snail-job-grpc-client-executor-127.0.0.1-154] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[154] message:[UNAVAILABLE: io exception] +2026-05-09 10:13:00 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:13:00 [snail-job-grpc-client-executor-127.0.0.1-155] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[155] message:[UNAVAILABLE: io exception] +2026-05-09 10:13:10 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:13:10 [snail-job-grpc-client-executor-127.0.0.1-157] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[157] message:[UNAVAILABLE: io exception] +2026-05-09 10:13:20 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:13:20 [snail-job-grpc-client-executor-127.0.0.1-158] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[158] message:[UNAVAILABLE: io exception] +2026-05-09 10:13:30 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:13:30 [snail-job-grpc-client-executor-127.0.0.1-159] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[159] message:[UNAVAILABLE: io exception] +2026-05-09 10:13:40 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:13:40 [snail-job-grpc-client-executor-127.0.0.1-160] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[160] message:[UNAVAILABLE: io exception] +2026-05-09 10:13:50 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:13:50 [snail-job-grpc-client-executor-127.0.0.1-161] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[161] message:[UNAVAILABLE: io exception] +2026-05-09 10:14:00 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:14:00 [snail-job-grpc-client-executor-127.0.0.1-163] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[163] message:[UNAVAILABLE: io exception] +2026-05-09 10:14:10 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:14:10 [snail-job-grpc-client-executor-127.0.0.1-164] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[164] message:[UNAVAILABLE: io exception] +2026-05-09 10:14:20 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:14:20 [snail-job-grpc-client-executor-127.0.0.1-165] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[165] message:[UNAVAILABLE: io exception] +2026-05-09 10:14:30 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:14:30 [snail-job-grpc-client-executor-127.0.0.1-166] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[166] message:[UNAVAILABLE: io exception] +2026-05-09 10:14:40 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:14:40 [snail-job-grpc-client-executor-127.0.0.1-167] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[167] message:[UNAVAILABLE: io exception] +2026-05-09 10:14:50 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:14:50 [snail-job-grpc-client-executor-127.0.0.1-168] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[168] message:[UNAVAILABLE: io exception] +2026-05-09 10:15:00 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:15:00 [snail-job-grpc-client-executor-127.0.0.1-169] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[170] message:[UNAVAILABLE: io exception] +2026-05-09 10:15:10 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:15:10 [snail-job-grpc-client-executor-127.0.0.1-171] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[171] message:[UNAVAILABLE: io exception] +2026-05-09 10:15:20 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:15:20 [snail-job-grpc-client-executor-127.0.0.1-172] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[172] message:[UNAVAILABLE: io exception] +2026-05-09 10:15:30 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:15:30 [snail-job-grpc-client-executor-127.0.0.1-173] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[173] message:[UNAVAILABLE: io exception] +2026-05-09 10:15:40 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:15:40 [snail-job-grpc-client-executor-127.0.0.1-174] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[174] message:[UNAVAILABLE: io exception] +2026-05-09 10:15:50 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:15:50 [snail-job-grpc-client-executor-127.0.0.1-175] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[175] message:[UNAVAILABLE: io exception] +2026-05-09 10:16:00 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:16:00 [snail-job-grpc-client-executor-127.0.0.1-176] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[177] message:[UNAVAILABLE: io exception] +2026-05-09 10:16:10 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:16:10 [snail-job-grpc-client-executor-127.0.0.1-178] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[178] message:[UNAVAILABLE: io exception] +2026-05-09 10:16:20 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:16:20 [snail-job-grpc-client-executor-127.0.0.1-179] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[179] message:[UNAVAILABLE: io exception] +2026-05-09 10:16:30 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:16:30 [snail-job-grpc-client-executor-127.0.0.1-180] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[180] message:[UNAVAILABLE: io exception] +2026-05-09 10:16:40 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:16:40 [snail-job-grpc-client-executor-127.0.0.1-181] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[181] message:[UNAVAILABLE: io exception] +2026-05-09 10:16:50 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:16:50 [snail-job-grpc-client-executor-127.0.0.1-182] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[182] message:[UNAVAILABLE: io exception] +2026-05-09 10:17:00 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:17:00 [snail-job-grpc-client-executor-127.0.0.1-184] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[184] message:[UNAVAILABLE: io exception] +2026-05-09 10:17:10 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:17:10 [snail-job-grpc-client-executor-127.0.0.1-185] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[185] message:[UNAVAILABLE: io exception] +2026-05-09 10:17:20 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:17:20 [snail-job-grpc-client-executor-127.0.0.1-186] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[186] message:[UNAVAILABLE: io exception] +2026-05-09 10:17:30 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:17:30 [snail-job-grpc-client-executor-127.0.0.1-187] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[187] message:[UNAVAILABLE: io exception] +2026-05-09 10:17:40 [sj-client-check] WARN c.a.s.c.c.r.c.g.SnailJobGrpcClient - gRPC channel state=TRANSIENT_FAILURE, try reconnect... +2026-05-09 10:17:40 [snail-job-grpc-client-executor-127.0.0.1-188] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[188] message:[UNAVAILABLE: io exception] diff --git a/logs/sys-error.2026-04-24.log.gz b/logs/sys-error.2026-04-24.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..592281e1b75b27e7c477eeac4509478815b50698 GIT binary patch literal 9523 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 literal 0 HcmV?d00001 diff --git a/logs/sys-error.2026-04-25.log.gz b/logs/sys-error.2026-04-25.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..08307f32314e4ee8db9392fbb1b917dc7381ce82 GIT binary patch literal 25870 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 literal 0 HcmV?d00001 diff --git a/logs/sys-error.2026-04-28.log.gz b/logs/sys-error.2026-04-28.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..46bee4774519b06019ab6efcee860cf600fe84e7 GIT binary patch literal 953 zcmV;q14jHGiwFP!00000|E-u$kK05Thwn&y2jBKmdp(mlj`x-(yNRQS^ch>G2U4=XidAmQ|cD9=!h^{9o+w@9cpPd5bVbh0xtkGHwBR zE<#>W`N*rdAVNX%S6Dy`3rJuaY+xI-u#g0{$p*Gb3)>)pmDs>aw6IMQ*cKbu7B#HQ zojJNX;sIBAW%B2LC>KJ^QVNkU_RKs%i{slegBv~!w0r*g`sF9vuU~Ax`RL%Vyu_T@ z;i^Q%;S5#kVwxY^*%{qEam+t1#-ee=a{KYxWThmqe8 z;!!+QCmR*$v0ADNLkhZTOHG!J)g3AV9#r};T>2@#(4W+UZ;tE1+4`Xi)799%SD)V? zN1uj{o(A)Lt;QE|kV$4ZQ0r^+(TUOblXW+A3|({Fre-TcO_VI(j4H!SyV@cV(Of?< z_jUEsv#nLwPZM>X$F6D3-CmgLy_uxh!)#<)iDuthk4*JK&-7HA8<7sxjh0Q~)9z4o zZ7K2>#?Y-7GVfeyJ^bm`i?cSaGu)ro#uxFPHNj);{kkHz58kcINQ1%6e9i1^aLvSZ z?uur1Qn_PXbA@K<$o?QfS?_$5Ip^I!=Jf76M(RT464m2k`~~vjasW5UbZl7DG)|g* zJ&@GShjvR|ioC;*gP=2r?q`#!r5)V4e)Qz})t9@gUw(ab_4XD1ogVLg{Pg;#&;Mor zNF>yfYQ2cLNhSZZe52Cm&^e1hSZO?xPCS|+y5*7de@_O7- literal 0 HcmV?d00001 diff --git a/logs/sys-error.2026-04-29.log.gz b/logs/sys-error.2026-04-29.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..38a23411602393084edf3f6ea2a80ae500b17c8b GIT binary patch literal 4956 zcmbVPYgkjq7QGk+5y7ZMN-^@VU@d|eO;Fwfk2Rl5UPm1D9_Xo6>Ulh4^gX#h}=CVfuf(bUvK_ozB7BTz1EsNXXY5j z&;A$oo46?39{=kz-Nv4;j2>m*bFyYnj29M$npIeBo`GxnH$8!Q&i7_QUy$)iN4cr< zX7akM#p395JGwh6_k{g-hxPU&-B~XkibFs9w(Z;e$}z>Whhy^`?@kQ&of&)N6@F9{ z@$zxQ(`&-9-UvI#@mJ6Lu|(s#Bl*RT93n=Bwm%xmTyod(ii4f~E7sVUyk}lk z&FHH=6OXHUA30p9slF0XSyfv#{zO)6_~huwrHS80sC6R#f%9UW@zUWG@rRqfHZQako~bi7$=-SX((P-aa;_{;vXy2RP08+e^A^`zi^O-XsAQ!MHajS~@87vrKT!#YnJQ!CF{g|>JQbNW0p zhke4)lK_(*-rD#kZ;yqVUE*C^)!TTRE6glCh$-fwJ-iC8<8CW?(ADnheNC=;-4-wG zYGJ@Pl+}@fZ=cTI8t~(NUIm&Wea52F8~37EQm}6F)s(7Phekd%i|jk%WffZNK`iyB zt~r*ur)=-OHr~DpGrsc4u7%@=ZTy>V@eO&&B*DWiO}Fy8nWw94`OlXv$m>0l+${?( z+Y98)TAmViQh?gNOJ*Fpg+A16;#GWO;6Y6Ar_ODX5q55gStTE;>(;i=|LG4q!}KcS z*Z#RMbtLmqg&Q%UfBViJ-fWmFHB;xueUN;0@;{{tcgVVI@7k@EVM)ECiRPvaK1VYR zS=1Z}DvRUCwV&=$4qB%TSkFAXhf>q$=5^aE|9eN(vU*L;BK@h0S=1ECLE^=@)%1mo z{>OngWUFs_3Pui-LX&Kw+>duZo?LngK5>FQ&d@q^bc`%{1D;kk}|%b)Qv zB;lT@l5j^r(kw_iaV0&oSMP6!Hljb6x1o6 z#n%-4Wm++$MPq5yfCqE1G+w7z7c0U$I5G#AIeAel!=fwAIYz~Ky`#DgEsZ+Ac9fd& zSyV3J`UT1-S5f(5e&H)k^?D%L%sB6{yse~4nkZcj#6Xv;MW6aOxCfy=j z!1A89i>zR7h=b>dV&R*|HOjDJ%<}D9;19cv2I~zso5+M5EKKe%9uZNJ*W?mK^ig`9~mVl>)-n8u^e3bwQw&RP)tZCqT8@hh#p)<%4^B-&puMWs z>w4fclY{d7ym7`7$oq;&pF_q+BG6BE>MY$Q!o@EKz9;7$7P#nJY8lLK7^-7zsaT}( zpv1Q1MWZXf@r2U=(_64b-*UbIS3Cs#O3h=liQ0l~`j)y?s(K7uy##OmUC(KOntvcS z_Xg`1$?>&hv4>wpg}>8*j}&PXQC(j+-hf7l3zl1bd?`EpYEJWYbr%>k=1`i{_rjnl zr@2Wz3I;#tP;RJ~=4XfB&e6(JZ-+t0uN6y%afZW+G^*%Ipp%sWqk~9ikd40A76j^B zt~S8`977Y%)!U$b{fiAN=rLM9s;8Vc{@n5*OFpb-ILzoH(m7}wy`4IHBsd4iZSGQ^SzZ9S^<*Of6>^E?YNwcmkb6n{ zdLYWZuTVO7pn&1IsQQl?W7LX|UdC#8UD8EkN?B=1gjsd1wn_sgV> z%hDSdBScRHIa@@9Czk9puChEy_0}{I^?cBd0k1qQftgFua?Z-OXd3E2SbV=v<`P!Teg*9Aez*66z7^ZDC4}^;lRa{h%tX&rPVBE09Jh$c;mOqIRaU5|B$$ zvM5i!`1=?AIz_orgZs?gg{V5GT=&iNQcqqqmVPHu=q%;|A7=0F+vA;RKXu`jObaf| zuVGq$3CPbRLW<1HU09Gg#)0BoQb*)HOEC{G$UFK(%DzduO@iG>(Ns#e9~;D&7RJ{8 z=?)eQ?&vY7TpDtxza*f(nU4tO2EA7wK0ry(bD7t|yNBOxGe&F*X94&G9?lPl!#s={ z@uHw&_XC{SyCl;Zfa6kR3VhfvNyZFS%_4qkw8K-gi8 za_H)Qd?3_<=D~EiLGz%_NQJ(~P*C5aO1aRPTv88J0ulUkC9tvu(3+@sDA0gtVc)$+yhhaq17MgUTD!u~E;>Nd#xC`Hffy7v2Vp!9~ zfVpxv;j9iOn0v55dJ^-b5+AT$?7KWsHwd*e*Q3Q& z;xLslctJVv>FSf5%=g_rNyuW7(4t9U@sq+}cOhYHDZ=5F-S3m27#jizLqM3Yzrg`v zhi%Fc5F&&DAz>;)Z{dJ2mmUSk8!8U#Qu=L z>B6ukgqRDckzwI?LnC7zqW3cmdV>iON(-^w0R4mB@u)Q}qDDsMKm=9?Fpws0nKHtT zAjNhRG!HsSP=A$A!@%4_7|?OegPlS@N5P^zI#fPiv?3<{<1#Sz;eoP1vclTKC4_G<_z zO~ibQ&~%*n{fLioXH34Ys@U6v*iw)_9Y;$*b}3Q`GiG3<+0x;Vfxi(piSz#p%S==i zdyCMN(^JBni&RE~FfJPzz3m#=j_{__lZ2)lq!boSGf>vzw+a4Y#ZHMbt|cp-$qB+v zUvS?Tjz)C2F+*%P=&t$f_$CE5C|jE(Qe8T8f)3!Yc4NLL53Y)!r9i5JQbj4sPl>9v zi?F6UrNok3ITvA^QG!5j; zmbl=IL;|uV)r~<{aF8XrDIcbZ2nYk>a)UGqq;NwXIY{TS@eBlKB_BT9Ca^6@Uy!Hq z$_V(!FZc0S9N9jol&do-*LJh)t~$JUA37IB;<0OumO#gbpwbJoN;3wP5Ir7?(G%>J z?IskSXdIGPv}1E%4u}eGW|H^^QEd z7)kYFJqD&5?rlo3n8TPo*jLK5h6(jvWlE37{pk&wgK*={_4&T4-UH{93o;3+^cQ`& zNY^W#lS`l?IE_{Wz}6)wO`^yqO~UlN&(x_&m8s~1#Rn}KK+QX>8X$sG6yU>3)*M_Q zJ;5c3!CZX5llUXFuKB(i$Rmu_2?ZI=wGTS64bYr|b5^9SG}KjwuK&iJkdD1@2e2l9 z?<=;gate?Y*q4D!$6bi-{R)l|LmN92aPtG;RSahWW)9|Dq0|+f1@FrRQYM|sh^dV< z1q+<8H$1Kb`7xiz^LR8yEB>;TbF78ctmNvpaamiM~`cp|B` sqbr^t$6SDZ(r_0Vb5_nv6WO0d-w8*+n8%J6q!Baf{quW|`lrw@tItKrDFju8zWpLji!C44*Qsi{(2`2Om zwWaxu8S;>OspaM6%GW$(l}qT8KN5!F*e^ykEqj))l6%*`Q`wZ_$WZ3Vd$(Xuw4pu1-MY2V7p zc&W%6UwC^`ii(1qiUpq)FBD(I?7+%)(|2ZvN>gYv73tj-*wSWWyVx$avs}9tp-FDO z?WhvxjWjA6dhN0AD6c{sMU_bI)|t5WY5JSqmahG3v%JUV5LMO2*Nx$w^$iiet9)7| zNg~=p)q+|{2eXdVhA#I@qKc`ggf$bB;&XX?7dEK2C-063VBo8^w2kc{mzPI2zfNzi zOf(?wnhR}?%DZoV4IRS7h-wM!NSacoO60ntLn$n{JJh?qzdY+bW4z^^P?=$p zEaNySCy4lmEo=(1&(jVE$1kMK9W1V`QVDK&SUxnJOgNojD?T5e+WbU@F)L5%0nx=L zsS=wS+ao8&jTMy!XjKPdHJdt8GD;=#O1aCzk|Y!#1R4~dN>1|6lAzC)I3_Ele5JH2 z#^6iAPQP6o8gl+&T&jODS5zFXMuAKG=+N|>&mMopP@{?7a}lGS9THjQ&myHmjnV{{ zm-05)W7V2W#EJZvMF}cPr(LL0n;Tg2wgIwDL11?E2K()+SUf$;c%~ay7N(j`7gUc4 zQAmjASmDa$7Ph4!(o=){)^cl|<+%CuEk|N6n1Dbm=GBs}pe>w_XP1J(lM~EhOj6j= zc~+6h%}-p#A}>%2l{{)6iMwE8!*0CTc7_YMebWdN7)ctxFqs~}@4Z5?$3QILarznN za)^5b_ThjHVnSeBmSq%Y$Z_@ZBu=~ID#k~M0zaBlJba-L{9Nqw0;FFr&Ogw13Vl4V z{_HvLhb^B2xx6kiqCstb=PC}RL8S${npVmYjR&NunMDnBOp$*i6DM~h_@_^k#G2NJAo}aY7Se>plr128w0T|Vi-am z$Ek*pTS;9Zk`RF_J8^YbUi@+v*xf&AXA+(V;!?IX8>fySKlpVY-@JFu|E0V{?x>I_VO z3yfCyuMT1jc@S(_(z=y+wNsmR5cVdjek2t)qzyOJJC+~@6C+wl3!5A{rz+6KanwgE zVpa!_+xjps56W!MJDojeE6e?;&+QKG_wYG(#o%hTBA4En$CutyW^Ooz3g*QGOA&0D zxN?%~Q=Q_Az-e^)ji4ZeG{pL~+UtWDDWBB9C(Np!quGPyh_RiM%zX3(N(cl_ySvsatnY*vl1LT!@TA?J)1vr;E{wm32NGp=DKf>%$+H7?-Tq75_MizahY#Y78? zHSWxBc|u;xJ=HUIEpa4vb;gE9)mnCYZdA_Qy(HmoaBujGUK|TCCw<4GuX6LF#vOZx z>{P3*+zw^Y_z%a=S79j{~H^)$Yfc)X5nXfsPClK}QTl{|J!U z`lNg)4y%q6Gd^8B0f;y!aZ)%Gn>fP3z%&1Ak^VSo@#2OlPYqABI;kkeWV~4Ly41n6 zJa}`Pg`_lxb~qOd^foe?c3kdF^qy*DVj_ITOlY#NNc4!leZMWB4(MA6XC~A|*qnXlj{=l%O=y9Bo;cW~srCH%o|l?lDJb5= zZg;_L74vx#aObY|yqWG94rZknonB^LxUJW~pz>X7^t!iP25K25FVR&wa9XeXJTVO& z^}2i>!9ZJgO@jFf9~BQ9A?Z0Lqx-eovqn;LBIEp`$B}ti)X=wqJw@`z`t!8i_D?=nss*y!6tsSIoV$pY~nW%ZvscAgg-_giPIai9Xn#b^^1HAs+7t@JIky$G;vk* z-erfg?#U%?egsA86Y99KEC#RJi_U{L)JnWDH&qLM8Qd;nL6p*0{IX>_fua2w2 zX6(l_e4$1BIBOrw73>6mC5bbIqmYo!fvaZ=4;*wX(b*9GamajyW8>yWBL2D!@Ju$`(r%^Uz1$-0(D-8ZWoOa zx6~DlZF$#G3G)l=EN!n=?xo1XbV|IHF%KYHWrbzH?%-GphLl$r1_evR8wbnzILji*4br!c&pn3IaInf zUi-D#XwRffosu%2O2}0HmGVH++P6iFIT4S(1G62n0hjfTxyw`+$ULkLj4`<{CSG8y zEeeWpdYY8u?!L85_$)5b#6|G6u|Um$xk#?8M{H<6VdcT>t$gx}8Mc6ys9eE0nLbrLBoRgx@2{pzS#SmkR>IvlpF-Ij-z9=LR`jn}Q8@U8GRd0@5i z$a|2EzQcK;czEH1Syg|wtFir?haVHCc57#Jrn(zv@j5rBvxW99SGZ>m;_HY^A#1in zCpZK*ZfFY*y^h+pD{_6kZBwa;Yv^nGo7d9iBk`{40cE|DVU9+jab9&bge zOhlGH%|GcIo~TL>?RN_@T=JRlSkIqfEOR##F=w@_ob^~`ts1Y=pe*09B@O&$NM+UC zn2l_X)5)vX(4G$*>z!(z|J2snk+d^0-@89KMJzl(NvFZ9X{EjU%F?~*S_if#6>yI1%nGqgBJA99d$~oO-R5O{ib5ku(74Z0q<4W zc74Cj+qItgs_nKxj2e>nLW%A>I$-7Z2<@mXY>y6C?N6_DY+SQ_@L;cJ^}|N~XW#x0 zt+}k$h5JL(_8kH&iTqzC=0;7oR_{}4YYPkSdaoa7iR^!yrf}Lf6Cf_CaJS4iDRpm; zYrwreq@n4&U7e7JpA?^z!xJ^bnk3XQuU1*Q9+R!VGCk8n)qHDs02w17H0LPa(f7%1 z&D&~je{H{RY|5FHhH++4b-rrxRW|;>ke#SopGQUlrX`Dm$ieDX;(oEnM%7^Y9z$x` z!*;3!s(km#a-Pko#J!>5;VO@CM9`N$+_h~5`5Oks9c`}or85M*8GtDC}j0+@ZgG& zh2MV2?((qEU{1AWVnS6-)zE8~knXMBuk9g;q_bTcqjI6cdk)`+a~-D{`#pp?<28m~ z@(QnK@Lq+b>`v^Cp>QLv>sCM%FAlOt~tm?pMNi<#Vu2!WxT~&(LK0q z`TF{-q6cq>&Q4;@c9@pcgMOl8wqJqr^B`2s_hE{n+UrM9H2OEj<3`x8U*d8p#4^5y$dwO!6F#bV6oFv@3M3E5dWU+Eb}UA<`SK?QZYJva^J&5xFZ;b=qOYc}^C8ph}~JTbDKI>IUy* zuJy{TRV!_wDGQ(VG6r0uMbomHRhM~sB-1*_PY-xj&Ub7l2q}0cX?qw%~xm7ZD1dtgk#7mow=mC zHs512PuU~EC%vPGe%GmM=>7W1eE#z~TkC7G>zOuOWUFEyBqut>Q#*8PBh10 zsj54fRZFCIW3F1BbLj8#)nNTTcd+UZXSR_yKAo;3*s#}J*Jj$gFUXQ4=$_w*t^F{U zS8#j!`or)14aklfk2jU2oBI!)3#6 zHf6rtem`S2W40OnUTzXItFYDFqLgZf^LOt&;pF9axxNA-Tk9LuYxiePxb^K1TII`E zKkSO|J(GxUzqecIrsmPPUn644$TL?pu$MpB<>pwnXIJy^vZk9-2c^SakFch|ysVh# zV8m)t<#tE*8;_mq`J+Syldl&zvKfd2<#t$#Ol_V|zFvWT2FMApLOJ_oMMyYc{Um_3@_!7}FGW@PcGI5m!<8z+ghI)aI-x@^}CnY$+ zFOLT0fN=p2AcQFwDmUxG?bTIRdmHPA?$(t;{(>eGF8KXY4+`81`L!urJC&+-o@P0g z)bv%ftT$6xvBnBH6{=V5j7{%Xs7^dw*k797$FJsd&v!f6%U*D7uyV7m4xXB=-g)PU zw{!Vmc5j7{jV0-!0vPw&MiSifXnq6l3_|K7)?S$O`}L zhW1|B!FKKX$(63Ps)hUxs@+ z%pGqS5jyrX9k(VIHsu=03@R_`GET*o%a)vl~9pcpu(v6Lh(`1c7Fy zy1W~qrL{i!_2XR6@ZEumse2Xu7YRJt7IK8Og!wCWONCzV-OKAJk$dd zK*d^kMNfXo6YTkY0g*jJs~zPn{Ov79m&G(${h2o=%LP2+ zuVr19`cC^G)$!4ZV>EHd^xPC-*YDVo{rFETq?TNN+qqkdMDJ2jckE%XQndE<)qWyv zwYEp*5@*c1{J}BLl5%jn$6>}++uvpIPI`aa61V)`=&pSSahmF8RuW)nY+@?v*yN2n}$&ubQ$uRDr{bKS&ZOhtMYvV)MPD^!N-Ns3|tSbFAX~YWO zc`2o{r8ZO<8FRloJv_dfu6nSvdW>K2e${uQJ!F+?O;OQDt?}8CZ_#Z6mwbJFF{X5h zSFcXqX2I(Ym1AWs(OTc>cbpp?*;noGAfZaMpeZT}WsSQdv~l0HE2R24h1p|r&GXpbnjXcE zB*yQ@r*JPHa(yM}?zGU5uf5ddxVO2msxi1aGcXlZcKMAHBay0tcF{nDrkZcv7x?H=sV-tkv}tF*v^2fUa{isgTz8^}8}G%3D@loS540U; zii0gmUeC?x>^~ZEb=D7!=&N~_ePxfXpNH*vWuCY5(zHIF)P44@7I3ZA)3PoLE@8{H z-*h;<7KQ$`(nAC1s{vO+GjO1Ku;N@IqDyHz9H-WVt2t54TM$OZhp*p3u!1&mZx-Bc zoocW90?zk@@xBG%uIMtDv$CPl3B%QA#1;p)0FERsa><;VcwiLlS`_bx;KNZ+6?}do zaft{_5XtZ%lfWDo)YZLQT-H3RtNj}`wb#{ z@&`KyyE7sOjWydV9&1VaZ3nAsI=e`#{cYCaedNLRM9p@IN5RgJ$3Ff+V}t4(v8&zc zi@o|!)1#})bE*bLt#9Lv-vd=W`8$GuQfMm)q{E|nh;aeVYH(R5L)6CDavj0yx!E4n zfo_YKh*^RzCfhl`!BR#MSL zJDTGYxL!fseH_Qp_x~V%q2(k=`{A|4QtRP8#>bqL^-7L8XK=4`o#>hW%}7kP7wQu5 zrAP4nESp$xf#DsiJX!&6HguJ2PjAhOg3Avix%k|c=$i>>Lv1dC=YH*6BVZ@;}`qm`1W})??+9v8c>q~eg*zYy3Nxr#FZ%G_fCa$o> zhF-!`t1HOSq&pzGKCdgv(PXU|&^YHM7NtOh7tnMBG|zdlM=2=gdA`%E&~3e-6mOO+ z+QUE+bQ5uhdr@+mjU*C>iHldk9OC*o;34kW^*(fcmgnEJ(a@_MYLjneU|}>og#p(u zd{lV4<{aY6X!2k4wb;hbFzs_I95W}zX@99mgoot`OJaZJ>7@%xI%}TH_JxJS7L!P= zFUgMpNAluzr7gB6?_g%G?>K*mqPu0!XUZYRwkQIP>XHy4AARD z(ea?W2qJbeX#<`|_ga$mjLS<|?Y1Zg6O_{pU0cpg0m zSjK3W9SAlDQl(XM>Lq~1>K%}TOD{_HcG6IR;I*g0ZM4{`944wfpkMDTA_+3-Af99Z zNRdg0!N3hN>EB@B7MXN33?!bH7UoXwZOK}`_f!GbWc{|p=XJ(!CqcaQOwllr2rie* z6jL;R82AQ8x}gzTGc&xJ{iy4g zx3e#=7zAdPB8C8znV~_Ksex7$m6l=|{K68qRXaAIocn1xH=E0Srs-~JKO}^%RFQNp z9-l0_ii^nJjNaZ%cfC{Tb8h(OT+iNHcN9w`ZBC00(7Rm9C@)f_@!L2&vw5l=6$8 z5vy{bF31qN*eWI1kpv(Mq2%d@rl4f75C_QzIfOf<_ZIS|8lB@iNhtN9y!r(dlxPqY zkVRjA{?qJBQ?ZbWn>zs0@MQM(J=3z>)DdaJ5iN91;aR5W zrF*KiLHHF|My^hbd|Ri+-M-vl>w4>gm3D0>&nxD#NS@bL=PZ46zMY)c*3F6E0Vm66 zAt^YT=pDJ8iobbgkCcJ!o5Pw&uteMI9qmuU&y27Fq2ZfS56JVpCdTW|HhyJtvV0ly zjSq!I?hA+kmf!;z%aajcsqkgY-G~3ZxLB{eIDmzLo>+>NsPQ%VEum`dorDJ&UJjps zvyptoR3eGH=Wv$%((U)ki%QSr9HeCo%?cfzvO1Xw1(okdVkQpKuq(6DKtEJ4)70oy zYdJ5sg z%G8^@|uOQ!W>h4B^8})OZn+Recv}VbWrjsBn zvOG583?NLFh2eA@wYJ%I5y9l)D0<0&BYFeKZicuK;GzGH#qTN{vIsxaBIqni3!@i@ zTF^;ATI98YMCpI51tp9u4{Gdp&14tDjx4*m2+V?cW~?>BVPS~-1@Dl%Y;z!|o>^LQ z-tHVQdhw#HP5OpyT=>&*9=Z!{7Lqq(`-6VtDj~ge|L+k-rDOY>!Uaph>6|U;q?QLH zLq^Mj$(w<{E~V6pM^KzmzTgylo!0W8l-tYLA>cR0*lTnyzAFX`uO>;_ZONveGLlWF zJoE)m-~%|@ir$6)^b2_-LuQeS@p)Bq=jxd|M0mXdg0lA`tLmInE^$=_BgxO)c{Z+i z!HFq~M9C|C>E2g%!8V#tA~%`^1Ql1hL~aC+-0y2CJ#A4CM2I^*o1g0Jn{LV~(fCT% zt|fV=YLp_8nU&^DJYy_^!PZ~!6W1&ECpTb67rUvj$G1&hqgoI@2e zgc}#d^=%D^Z!c4(D!7?jgx>ySQuahHIg zGKT{4mJH8Vb(N{Ka-|CbKI!Fg`Q^fbpB@_zj&=JZ7+U5ZjQXej2K^(H_M3o~M%=hf z_I$i$Xjzon%R5_(K+yt6HG7-|_KnUddb_O4B3WI#LI`_3-^alHB{+6_iobbX1Pr?(4be;Tc;{xy1f z`sFkbl^FzVR$rmCWo56;y7NNly|kW}GVU&=KE0dVwT+{k+M9%ST@$C#uf0OsbUky%mErwF^b7hQrzAeEv` zCc5zDd8}lW`559}yqE?`>WtgIFK84ONV2rx$WsU2WVdQd2U)4<;8Xsa|NHUDzLsX6@}~Vs zBOdcNG7dBn_5obIU&s}|W)R}qhp*My7Y2ILM!`S07wuD?vlP1X$vNNzKJ>r(sfj=x zO^5M(9NmoXjDfzb_{%am9v&$NoDOpbvjh{Y;GC))NDqp-2-)WZ_Gb2l&skF3OXave zOE}1>PVn5wgutG+@?1PpJ=$_ybPx;}D91wEt0^nAp%xX#$ckhD`f!Rm&WeG%jIrS< z0^g%e+Cw4Fn1?`~$q1Yci_YrI-2UpH_HhzCeafLHu&unfIqhS{%@y%GCU&^H26s%9 zs_LO9aPW04gT_TARaQe`L9kmx!RyS_)PusdZc|8l2_$CWB`)wxA-x2J4Lohjn;9-; zx;ho|i)4XtUgCm0@tzxaf{%bd4@53*C3X4&15kY$dNV-J*p*ah{95WX2+=jVoz%GA zQlG1z6o|D%1V4Qt2Tu?XWdNT&ujRt8xRPo%!bldE3Q>lqRDhij9`6l0tGvS5t4phV zKhY#35QNgaJrsog{50$e^N_r)OxqT)lLFU)@B{j8hV%R>0ur$(Y!k@snxE1lu+A1n^)V^j#q=*c(r!T*3pQI(VrQn#J7}=e%tiuGJCZ)_*LH0_pQ9fmW6)TDk|U!Y7g{d`3K0 z7SSfuJ~>t74Ckk5%|?7dq?-C#?xkQ-79!lEp^TxT1P-KSBCiAQWE@lm)&VUH=Em4c z9^gJGtdK6e$%|Ak0_Fp^+W12pw!hv3d0Fmk7IB5{4)`2G5N4j=gpy!fyPd_I?Ngpc zFR4_l`Inra^whYdQqhwbimdF5sYz!T)W*-O(u9MJJwm}@^^Qp_O>Gt;F=2%;z$%e(kVB23t#sB8F4@$mep!`)=YEk0jg~AWMz5WiEcK$ib_Z*CLPiWC*pLcRNsRIF6 z7y@3bo-E)Ke|tat@ZxwzsMo4_X)Zx%%*T){)&iFblYlvvb7 zAV}_YOY*I=&+v=TzHv;RkpM*2xnAXuVS(uOn967!a<4CEKvygRpYk5DC;~AFB`Ts( z8NiH*T%wN`vH)toHj$lwmgz{Zz;g&-BA=}+#wr(A2C59*mC(AT%=g9FjL04nh*{}o znmpqTXzuHx0U*oMINcLB`4$djvmco#_$UH)=m8X`c9OR; zib_JUdWFFlgwdA*J^-3-d^WF`lni&S27}|rIiqh#4D&P?pdY^upduf1{!oTTms-zC zjoK%GTEGuDas>=9V?FfOr zZuH{^Xe7-tOe8?;BQ+3dL=)XCEA1R4NBvYQkT+^7LnAC zW6}l81s-yhWYRj+d5JsVwpnC_4W>osP@7oZX_$pou#L+?>O%VIT5@J*fXP*Twvrg- zFMz$nDl}FK6F|`0A5hcaE9x6+Xtr_c67P5#UQl_LwdM4E{sOssoTmtD2o6iDg%ME| zDi{E&{sGnefbanXQ<%=F9Em$U^op8P8)DtC2}Olm;i9 zfhSTiAgz{<2%h|a-Y+Ab25|%1WXBpk>Gg4edZaC6=M1FqfyzN+xb!V%z{nQ0A<@E0 z#Gi+r7QjP6xb&oCwF5>fSJH4j2V@{HvY^t_z?m+(zm+4BH;mcpBoGgY8VmlxjQ|ow zO4hXY8iJ4y`_iIkCjSkEbR@4=SsOE*KH81n;z6T?||J zYlWM>0P|teYM>^Z3x>>A)apa0j$HDecmzR4XTRx&B9dAr3;f$uRZP%k@d5VgF90B# zB|jKsW^v^kRN7wBcSdVomgFk=8vr;3p33agg|aAUoCng=@yp+1|6qjjC0G%C`ahBJ z_WpwGuk?3~0X>CKZ2xaZ3Bdd#0VIwRpr{FDc&o)ZC;?u+!2}TUcK>M*SZ zTZy^>?BkQ;Jb`eW;@%Dzg@Zpy7&sF~_cL>F@PrwdpRkRSDDHc6X?&OOm!v=?dVPpA zYwrzeZ69g^$p=yScj6^2%Vc#ei<;gHoNr!6X_+6+Yy~Oue)&HP8RUd(SVGbZuarm@ zR-$B@(YL@>6;%F*AyPAXQW(pkjN7Kg;+K+`kMwyn)-BD!gYrx8fX%NZwH)aaUhuz~ zsbLw6axzC`Pt%o>Uz!Od9Xf;5Y&5bT3buJm?jIZqXL>M*I-FJzI#@eRYIN#Dk3oI| zzZ#fJ+Qva{wJd7`D+LaN(GeBr5fv%4;DA3+8bRE8Tk zbHZxyK1HFuUzP-Z1Iq{OebR-Muo|RfH#m5}yOOEjhOGHY2}(7x8Nix*;ktX)La)D zX`Ig3GS`DAY*8~mJqn7mqFxUOIxS~lihS9pNl2s;bhkN}UES2Ja<&F#R3djRBYhiZ zq(ZwV<~%G^d>Q9%rBC=$?NxO|>M-MXL{8x29hkU1T;9;x^c?%%IQMBHDsHWJJ;8Zl z>H9{~o|(PP!>z7Bzk)6G@ub_&^oN9G$ZGnQqb$PH0+1rfNagQji zKIom^TppPVoN26dd$pIa?LFk)S-o60mWu3`n!_Cy&f81WVeUxG!4u~9uyI%~Iv5{u zaw{z7+Z^?sX|dwnOQI5Xi>;eU+S^M9<$9Mp+!sPwdDAEG6W!B=R@Pj46Ww-Nv;>EQ zN4jKpwpe@OI(9S)x3|W=HbgXr_QbW+9hFMe&P#7P?HSlsZkyN_2=C}QADG+QU0FrA z^&BjHGkfEaFq^o%J$ZF=bc)Vudp!SORp(&ZV>fPickN(nP2?a>Xa8H$-gwf!N6l_S z&B5Bi+JeV=kvCaLmEZ1jziqX`%}^;!5WIWM<-_&eR{L2sTiNSd*>c}`8;5us6FUkp z>_<|H9L77l*73-@JzM5$*^PO%SU!8t_)HbrJZI5#+z5V#y>_io!>SciJqp|Ydf|>` z>m>kfdCjJgb(!&$9k)Xu*KViv&w|Pr1ubSn7Iu43;FmF99BxRf+n!wh$;cq)6c}I_ zzkSCa^Z~^tG&yD-7m>}QC_Xqg8sHigJKr_t6Vybcg`Fz7Gdnu}V0syU`=IRW4VntY z!Ms!-bii-W&onf=xKXr%07+^3N--+1H#lQmfzvB?;M5TP=@@=)>Wr2r=LwK|{H9kG zpq8BJadPhSU@TsY+mQEZF{564^7(>W!R*tZ;6*_;`z6B(?lQPZ=JxkT<)Cv(sruIX zE~YI4sitLm8s=b{W=Y#3{thruh&q4wGidNhj+MP7%WP`H2^z;nD?TqKu@DEI^Xs!U zU6zOXcQRxY^gSS6aHklpH&ko#*)Ii@t{{-Jnx=j75gKg9O|-)=CHJ6$m5j9U+qUlI zn#>OL051$M19+7Kpozze-`iA;g*z;x1!~b`$mkW8wM0)410r=%SV5YmS@MvTrlOWK zE#m0<_fj~-WT|1>g5SSq!Wa_I!U#u!BZuZ=iYLbV0@C`#Cp^ z_!Vba%SWTz<14WPYU2?dW;S=C<%K&wnr8->j+^2!t3K=ap4G0xqBq*UC5V=8E-ff2CT8Py-2*fNrln%-Jt%H`mjim7Sw8#m`R>DQmOu>D zM7UK6_nWwCLls6=!X0nKMN}$0H%qAuFWq=;P_T;;AI?WvH zVCD76$XguDK&w*LF@I#R{`CmZ?pWl z=@;j*)FiB5q+ixW)~E3a={DHE%TPlauDR70+OI|(EFJ74llE%_76u}J)7fwISj+a< zU8vpY@ZSr%&oFpnmQ2y8GeI2ZwnIaW{yR}Y)!hnzT)a)*UJm+J zTut6gE>P;{RDy#ET7DyG?uCpDau}R$x3?ta7{_XlQ__3yTI(Ef6Ur~v%t27WHge09 z7Yh6}WC3Uu#8HMiNBOQJL8|VLVE_IL)Y2)~!oj&dV`Ey6hCDriT9<-(H4 z*N@P!b##W1zW zQ3~!Fy!e;0xs1E=H$YV%8h_TQ3vjEUq7s8747^fczlq)HTzeLj$X$GiK2@cQ2a4e0 zJH5<1Yw5w5^hlXxm#;_@BM8IqJ*SO4_X6KL zriuEx#*H`J!BYHfb|+3`4cec$rcHk39aoX%8`dY4ta)|kV&PW6H>g&?FV_gk2nyiQ z$DlzFjE)DzlRLE=e>iRns#LMz9&A7Z^t85xX6^<3}25RTe76gCrnk4_%pOrX9B#N|2~`ZLcWu zi{9f4eeeO3lX`+(4s;WWwd=>nYEGVa)S-kTmW(#Twx8Pg>--O$5V)|c(7TxD8 zDXKE++OfFKS2VT9F^7=@J?D53zwYQa>r@T?t(X85Y$zTnD}WJWZ{G<542j^ zk>*e-ZbEi1SWl;148UAVXP=3QxoJ3o0sGe05McFiN`V_7&hO`5|vjy4# z-%V(?LGO!>vREyaNSkFy7np-BnJsvyp-k|efskwvJrEM;T88+7W^I)1e&7oXIMIt# z`se8%V*j9UugT$BMB#!a=bu>p$v89)C0p(r!|0r0u)IGq{G-=kYsMYcIc_SI0Z(|b z+q?srK^#;-SPl5=24yb;$D`{TJOhcsLZYATI$`>T(}@j#N>H^38=>_MSP2!Y!LzoQ z6aycKLXM5odgEBV-0X(RDoNRI(xieqvtS$!BQ9%U^0#&dVX_p@FZQsI*kLMvP3AiS zq>lhK0D$UHq4O8}iZKzkPsJKSQPqt1zszf9$It?4igDa7?=4m+uy{V)FGbw z;_5!-$awTcls4^n>usMG%lFQ3;OfS5WF&uqih4n9t(rM?*_UGsOx{@Vt>ar6zzf_6 z>7zww;V|`ah1r>l8s9Q{hHu>I`)TSalPFKvV{_4oTUn=jML7zOC$MFD8KB*0M%cZ7 zffa#E&qy|MDFRfVJ_S>pnR@bQm`Mn`P6HM0#hBH5cHJ+qqHyV1$=<#&R5)JbNpFM} zU5vwIz!TPLeyl4}OyW7>%ynGdA&v~b&!S!#$7M8qXvsEi0VkE=Fxl~h&6*#(6D5Y; zfq0sTt2@t;vDhoRTy$JU8$l#WCQT1&Om7iIfT~?WP-?8qy+|)X_Hp(lRw^#N6b!t; zrN03KFLCK_!9W@=eWIz!dSRApsg1BXs7yuwjCh*C4XX04nW8m+J`Za7#ELy%nBsz3 zzE^#sHpM=mmQUA$T2c9WQ55)-6-K)+G&RyE+6hlNSx|4?1yf9Kfs=Bd19kMsq~CW# zS`^~a8=9G{+bC@N-+ z!$p-ho-2GJ58fYttt$OPwc_b)ROzWkhKfk|>1YhIzR2bbY@(*RH6&k;nrADfx zcE5&dxifxI{`#XV6;)o^|K;Yj9H^M`P0_QveNf)h^!MHTx%w68*_)z{s-G6i51~($RFELRIpXjdFV(g@NFx zDmeJ4@Ymubs$%%D8bpXH+XThBnd?>O%NGAVA#z-mPPInzsHm6czmYf!{xAxX%H>}a zrT$c2I(ieP61ey4qST{OR;U2>AxyRN-%%Zwva05UxBR-4^+y5hXdlWh{Xb~fsx3)m zPj+J(xTqx~#ggvEAn+Qg@@X^r%zhBDR8xC%dN_8e0p-D?(_f%50MXl%)y^7%g57XX zgBx8H#5B$G^fMGZMTtSlr{y4?99b%jl4tZ_D5GCGFXRZiT>`@XPeN(BPXYm0dcpMd zvEWa&O1UABP-qMm8V8NRLJ5BeJ%JK>Mo;!osExh(;n>r1cnpZY4Q_vrgnAxX%J9Qd zNC3*xLs9=mD0%^~4;Db(4eUD-|1X99kCy&_5_)JKWOHW!zj5!ORsU=$RJ9HJ`DXy2 zU(3M+BPcrXqA0!!CCW9hS;HCgpMfl7LAWMG9JG-`Dfcgc`dFyQ8(5{}e*=K}1fu#_>1iHsP{(kWA`UDv2uiUe1RM?_AQ&oM z_-sL&*^dL2Hk8W(6TqsuEtcc|Sd9}D7BKm7ho3e>fC>oUmhfzScx;*nl)OV@5`zp+ z%iEx`hm3x4pbsR}KJIs+O-OJh|MM6S|1X82L;?5uzp(sQLQ(ep*On@l914I$fk;Bu z{}=-q@SiRHA@skq^oM}|Md-!pHwl(dSqZQ;0|`2mK-~*fT1G$o?P?zfrcu2Z3<2e+ zR;v>K6ic`P>a@b7%KAPfTUDQ-WoB2a4w(7~97|lyHX*tUc6#hf*1ZM%~?A z1*z<%##ww7<~&yS!$X{qhu|ELfgBF|88QcI&->k4Knghv;HfkkL4L-8O1IKcIRH*u ze*oYh1C@?!J&X(Z=g1ZRtTC#+?l45B&C-6Pl+2Hm`m1OE$PVg~GE@=EiFvFBily%J3;brtwSb{7+Mh}_-!0(;~Ry+cW5H{!UfzxJ(I3V$%G(hFcpO}OE|I-MN0zUe| ztL*oL2ghZ&q3#@!y$1Mb2QE-lEP3+hA+emJq58XUFPWiYZpall+wCwFzg~p9?Fzx( za}7Rb1O}8}IUJ(yJ{$t(Jy&TwOwYfd{U=H+y({nur4Z!nxkE4gF5nlGhdP42=+Bz{ z4dIWW|61h#PWi(@K<1&c&+sFlX2O<~6iaNlMUk0l`c2rMhy02UhrHCV;hs5WusWXn z$npP737tnbwJ*{sKVh3HS0r8TJbRc=TEhgagtAoEe~2*THk(J09x%gZv1$0R9yK z{yc34a3C*&6C+sp|7034TUoK>8GKmDVe%_}dfE&eR+Pa)JcJ|$Re(Hb3_$P!rVwlg z;0O*5D=J{2fvp0Zkg~kgF2g4zb@2YWj9CEAO6tHb7l2<5A^6mk9Z;T&IwAd0D11Wt zKNULt26Ze`MlVo-4`YSE#sA9E6iZ+q17y`{vkUNHB^#syuoNBxHpAxzl%>$I3}q=e zmgRtm0ioasc4#RCq1<~2!Dop>_kv^Dp?g7gX91x%24MlPdyho@*Fv*FZPm|;z%c~} zv|k7XmL7@%;tv)1lcn%k1Oyj#7C8j4^m4&@6-*s^2tIj04E`2?a|oIO0B|w9w`(*b z3!rlnoN|8;PT`2v)URgo)wo)d*n)ObwO4%BcWU=Z00fOQHY?2V;IfjXqXv^3q|@B`1nhmJ#9 zaBw-KJ(`8jJTNW%+5bP%!Y8u-krpKvy#NoyvUYYX`7VV(*ng)ppalnO$RhAf0el6H zR{z@G|6VRCM&Qd*?0=(0`Rf0c7Rn7jZs>o2P=6Kd-QfQ(0P+$Ib?ioE5Ew!w6?CY9 z^9*(V_Dr$Vpz{P{+4>mJ*E{$~<6ivn@h+fn^vz81t|U<|}YL=RjoGX8WxA I0^->J1Cw+GxBvhE literal 0 HcmV?d00001 diff --git a/logs/sys-error.2026-05-08.log.gz b/logs/sys-error.2026-05-08.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..2cf719e94957b956e9989dd0713e7b61bfef4975 GIT binary patch literal 29779 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 He)oR>;}J?G literal 0 HcmV?d00001 diff --git a/logs/sys-error.log b/logs/sys-error.log index 58dd2ca..3631088 100644 --- a/logs/sys-error.log +++ b/logs/sys-error.log @@ -568,3 +568,48 @@ Caused by: java.sql.SQLException: Field 'user_id' doesn't have a default value 2026-05-09 10:09:50 [snail-job-grpc-client-executor-127.0.0.1-133] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[133] message:[UNAVAILABLE: io exception] 2026-05-09 10:10:00 [snail-job-grpc-client-executor-127.0.0.1-134] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[134] message:[UNAVAILABLE: io exception] 2026-05-09 10:10:10 [snail-job-grpc-client-executor-127.0.0.1-136] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[136] message:[UNAVAILABLE: io exception] +2026-05-09 10:10:20 [snail-job-grpc-client-executor-127.0.0.1-137] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[137] message:[UNAVAILABLE: io exception] +2026-05-09 10:10:30 [snail-job-grpc-client-executor-127.0.0.1-138] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[138] message:[UNAVAILABLE: io exception] +2026-05-09 10:10:40 [snail-job-grpc-client-executor-127.0.0.1-139] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[139] message:[UNAVAILABLE: io exception] +2026-05-09 10:10:50 [snail-job-grpc-client-executor-127.0.0.1-140] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[140] message:[UNAVAILABLE: io exception] +2026-05-09 10:11:00 [snail-job-grpc-client-executor-127.0.0.1-142] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[141] message:[UNAVAILABLE: io exception] +2026-05-09 10:11:10 [snail-job-grpc-client-executor-127.0.0.1-143] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[143] message:[UNAVAILABLE: io exception] +2026-05-09 10:11:20 [snail-job-grpc-client-executor-127.0.0.1-144] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[144] message:[UNAVAILABLE: io exception] +2026-05-09 10:11:30 [snail-job-grpc-client-executor-127.0.0.1-145] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[145] message:[UNAVAILABLE: io exception] +2026-05-09 10:11:40 [snail-job-grpc-client-executor-127.0.0.1-146] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[146] message:[UNAVAILABLE: io exception] +2026-05-09 10:11:50 [snail-job-grpc-client-executor-127.0.0.1-147] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[147] message:[UNAVAILABLE: io exception] +2026-05-09 10:12:00 [snail-job-grpc-client-executor-127.0.0.1-148] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[148] message:[UNAVAILABLE: io exception] +2026-05-09 10:12:10 [snail-job-grpc-client-executor-127.0.0.1-150] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[150] message:[UNAVAILABLE: io exception] +2026-05-09 10:12:20 [snail-job-grpc-client-executor-127.0.0.1-151] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[151] message:[UNAVAILABLE: io exception] +2026-05-09 10:12:30 [snail-job-grpc-client-executor-127.0.0.1-152] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[152] message:[UNAVAILABLE: io exception] +2026-05-09 10:12:40 [snail-job-grpc-client-executor-127.0.0.1-153] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[153] message:[UNAVAILABLE: io exception] +2026-05-09 10:12:50 [snail-job-grpc-client-executor-127.0.0.1-154] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[154] message:[UNAVAILABLE: io exception] +2026-05-09 10:13:00 [snail-job-grpc-client-executor-127.0.0.1-155] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[155] message:[UNAVAILABLE: io exception] +2026-05-09 10:13:10 [snail-job-grpc-client-executor-127.0.0.1-157] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[157] message:[UNAVAILABLE: io exception] +2026-05-09 10:13:20 [snail-job-grpc-client-executor-127.0.0.1-158] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[158] message:[UNAVAILABLE: io exception] +2026-05-09 10:13:30 [snail-job-grpc-client-executor-127.0.0.1-159] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[159] message:[UNAVAILABLE: io exception] +2026-05-09 10:13:40 [snail-job-grpc-client-executor-127.0.0.1-160] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[160] message:[UNAVAILABLE: io exception] +2026-05-09 10:13:50 [snail-job-grpc-client-executor-127.0.0.1-161] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[161] message:[UNAVAILABLE: io exception] +2026-05-09 10:14:00 [snail-job-grpc-client-executor-127.0.0.1-163] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[163] message:[UNAVAILABLE: io exception] +2026-05-09 10:14:10 [snail-job-grpc-client-executor-127.0.0.1-164] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[164] message:[UNAVAILABLE: io exception] +2026-05-09 10:14:20 [snail-job-grpc-client-executor-127.0.0.1-165] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[165] message:[UNAVAILABLE: io exception] +2026-05-09 10:14:30 [snail-job-grpc-client-executor-127.0.0.1-166] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[166] message:[UNAVAILABLE: io exception] +2026-05-09 10:14:40 [snail-job-grpc-client-executor-127.0.0.1-167] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[167] message:[UNAVAILABLE: io exception] +2026-05-09 10:14:50 [snail-job-grpc-client-executor-127.0.0.1-168] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[168] message:[UNAVAILABLE: io exception] +2026-05-09 10:15:00 [snail-job-grpc-client-executor-127.0.0.1-169] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[170] message:[UNAVAILABLE: io exception] +2026-05-09 10:15:10 [snail-job-grpc-client-executor-127.0.0.1-171] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[171] message:[UNAVAILABLE: io exception] +2026-05-09 10:15:20 [snail-job-grpc-client-executor-127.0.0.1-172] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[172] message:[UNAVAILABLE: io exception] +2026-05-09 10:15:30 [snail-job-grpc-client-executor-127.0.0.1-173] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[173] message:[UNAVAILABLE: io exception] +2026-05-09 10:15:40 [snail-job-grpc-client-executor-127.0.0.1-174] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[174] message:[UNAVAILABLE: io exception] +2026-05-09 10:15:50 [snail-job-grpc-client-executor-127.0.0.1-175] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[175] message:[UNAVAILABLE: io exception] +2026-05-09 10:16:00 [snail-job-grpc-client-executor-127.0.0.1-176] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[177] message:[UNAVAILABLE: io exception] +2026-05-09 10:16:10 [snail-job-grpc-client-executor-127.0.0.1-178] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[178] message:[UNAVAILABLE: io exception] +2026-05-09 10:16:20 [snail-job-grpc-client-executor-127.0.0.1-179] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[179] message:[UNAVAILABLE: io exception] +2026-05-09 10:16:30 [snail-job-grpc-client-executor-127.0.0.1-180] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[180] message:[UNAVAILABLE: io exception] +2026-05-09 10:16:40 [snail-job-grpc-client-executor-127.0.0.1-181] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[181] message:[UNAVAILABLE: io exception] +2026-05-09 10:16:50 [snail-job-grpc-client-executor-127.0.0.1-182] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[182] message:[UNAVAILABLE: io exception] +2026-05-09 10:17:00 [snail-job-grpc-client-executor-127.0.0.1-184] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[184] message:[UNAVAILABLE: io exception] +2026-05-09 10:17:10 [snail-job-grpc-client-executor-127.0.0.1-185] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[185] message:[UNAVAILABLE: io exception] +2026-05-09 10:17:20 [snail-job-grpc-client-executor-127.0.0.1-186] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[186] message:[UNAVAILABLE: io exception] +2026-05-09 10:17:30 [snail-job-grpc-client-executor-127.0.0.1-187] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[187] message:[UNAVAILABLE: io exception] +2026-05-09 10:17:40 [snail-job-grpc-client-executor-127.0.0.1-188] ERROR c.a.s.c.c.handler.ClientRegister - heartbeat check requestId:[188] message:[UNAVAILABLE: io exception] diff --git a/logs/sys-info.2026-04-24.log.gz b/logs/sys-info.2026-04-24.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..a10ea6824bcd216076f167404fcda1fa23efa326 GIT binary patch literal 2316 zcmV+n3G?AKdFn5ILx3KN=4)F=zjDD_rp2I8>L|~18_yKcUNO89-bAHm<( z8o!&yX!hC^HM!&Po@A~g&*x3%P{afxR=`eZ9ld4Klebh@rPr|-#}Gm42fT*`^-mlc z0KhgxlR+%*$^ILjFMrUENo^a(_6ap7=xlI^?`g0Al!Z-f!=KH*OFGQj z@A?)6Tsyi|fE*wqx@gmYS^?UrGE4%ZFZOV z3~z-$UIXtC0Rfsw7L4)vzKce^R9j*0$N0JAeyvihWSaU(29q@P0jpfhC-oIjd8NJz zI>pq#xNnbhCkEJox07A3hcjq#*M&jJV9M5=zWB9+tz&#_n-<;}-Q4bY&Ui%!e zo0AlUPQSrX)*dGGZDkHyNRTPEAIX>P0PA8KIX* zsamCWA|{uT5ek5uWkgyG(v}gxOSL_xB_kBwCzBDSP)`pV7F-$x{eoVoj9L45oQo5g zC$_j_hgqUeB&!%sB)bQ*(}XJRaEmx?E`n>iAxkF|&w8b}R$G)wX$dCP)R;_3Q-UF2 z_!wRk@@w6Mof_(B!}6IId~iywF6>BeH(bJ;8&GENz&<8`(81`#5jyB`|E}3dv3^;bXbX;uU-oWR3{8 zx$|rIIJz@u70;Lsfg3Tq4Tn)TkZ(ZPuft?SFkOG7TjYZUcmNHaK6&}z-)DdM`}WR@ z@4l~tGBL1Tkuu59*A@adaR;Ix@U6ZH-HRQkE2j7H^&atQSXx>v+$g3Wfwc!R$AyX= z)+G_jgQgE9Q_eLuIS+7;nnO7uCsH=U>#oa#VMj2^Msy$KgnUQ+X{7gbvq_7FR#c6z zIvu_q_HYNJmcYUs#_xSf#=-mH)5kErPN50X>4#50|KEQe4IX~;F;tZz96%l28Q(KNz8bR??D>x6OrE-oL(5-&ynP#;#6`Y{s}Sa;yTKD($(NK8 zv;(;oCDwlO-j7W#1P;Q(r(CNy--pj=FaA8HEsO9n{a!5Jq0%dEf*jOKxLPqF2oQ4M za0TSBloQDBx~`0l+#mEZE?0Gx`ko>ap0q*DV@Iw47s^dT&^_)k>!bL>WEp5QK6vrn zvsX{P`0?qJS6|#e`|9(-EKBk@0Vg|;gz`V&QM!XDMkhM1Ddom&WZ2$u zYXtqF?^#jp1Kif`&c+aOcz%kv`Vci-Tg!oY7LJ-lh!QTUF#uNxzkV?>T%UIM#4?Ue zjNu6wwV*Y+9;$1??saWIkxii`j#!VB-%Qx6$m7uEb!1evs-9uUhVvJbZ+0E0KPOxu zGk0%oqrHtCG?rXf4CCFxaC^~p9qY><7B?Ae%YoIVeq80zJNEfY?@TeO)pcML)snGF z9nS?EcWr=fILro+U3h&GUXf*J|5kYXHQ_`cvxc6s;3}M1SrA56YI|8Kq`?xknE@X0 zpICrHBWR2ByB9=fLs}>EqBCMAhVIgg&?MsGz!5>F*+^!6#9O=J6?yO!eb z>2R16q4*k#9$7`OmYSe8$V-z_H{}UhE@56bYHtirUQ6t>C8MqtS7_nK`1x4) z)mp~?mNv;~l3Mr@tCEj}uYk(S!dF43W#KQ>cd8bCxuO*-MZ?NwlyeGmY7tCq;itwR zWeZ>OTFcJDS9PDr!j~OY6~=ivcME?Oll(3Gn8}-AH2*|4OR_5KE`3FkjY2S1k#S-`j%Ex1 literal 0 HcmV?d00001 diff --git a/logs/sys-info.2026-04-25.log.gz b/logs/sys-info.2026-04-25.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..5bb223bc2b91040572bce2ba1bdac7b33854afd2 GIT binary patch literal 14523 zcmb`OQ*>rQ_vT~Uwr$(CZFI-BJGSjk(n-h8n>V&?+wK^XZ|1*d*38AMxtMcXYgN^$ zI?sM;*Zv*i7#NWM{(N2f`@60$wI6?FtzHK$UMM6Jq7J>mdu~)SjACi3Cd-};s&NpZ z1W`ni^rDphb2*-($dg@C+!$&H0_`6i98)&d?XQ~LlTQ`0tM^YM{?M)l{-eL(1(8)H z0|DFN1v!w3H$#V*y62zv&Oa77ekTG!7=+=C9%mI09rcbLbtS7e)Ld9I8b9M`GHCpb zk5~c}$4GaqMG2FMcjUxKxoAR6F<91bG3AUTsIOD%CFWCRz|r)Q z(x+Z}(?&&;O=9p~2f_Z#SjJ&~aUZlnplErNskU59OBb7J51i)6DJ!D0*VbvTZd#Kv zPq=w*G4E%_N`r4aR{ zoL_hRQ)af_p}3+FUxT`6-uIFZ@@3fetcU^pb8$XUW0}1~Dxrivncn;}lh1S|thgl( z+9yAA?g3hzsKM*3n4zDn7v`+G#a(92=REjNYj6-4jv{#MAgo>YhFx#>gOBDi$4o0C zkPpIo32fhY0f|(OvZ@s7bApgNwWBEgFA_l#@9*l=Y9;x_V1vmII%qqQ`pwYnt))e- zdb(8YYgEO?Mre*o4h}I#8cp;I66B^zxhbSBhJ~CXAUuQr5qE3Kn&%pe`;e(h0{juUve}Up5t?9l#6yD=BnZ?2gSs9qKg$u@x zIDy}`QZFpTZ16yt0ht*@cdiv`cbaV)iX3NXp1{zH+&I+@+H}=#>>2oE`ZU{(G9^1O z{uJQzcp;m4Br4&=R3994kD_-*NT!o)Ei+a{8oqL6ocZ(Q^3ged>h`!o|Dc@_NjD#8 zl9g>v`H)z@<}ZmyEy52Vk;_T1%zR7V>=I>XaSPeW!q!nmiV2Gek`RkJC|0DUz+t%q zc|Ysvva0j|Kz9-dq^u#`Fk0B1SIEJzSppIDaLDq=;R!CcrtF`pYIM5aX{MH=u5f`OwTE z9K#-E?c+jzI|1lBgMVB3>>4)2xqssMlpubYHb3ANB4{g=bB^fmMDaR-&HCTHoc0SB ze0+}go!vWrB~#mEk=lZm$s#a@qZv`2n_$>Aco{%Wu2)$N6XgwCBc-KZg{2GjXVFM0 zgLXmBb>5J(#pYicu|a>Nfx7@~+T+JB84o=#0&^<@oE-O*%8)@Fpljz0>`$ zR8dMiH&>&DxnNlPX{eOlb3>S{*np(QnA24CaSQlOe;oSM>PZy(x#$WYaerOsC;s{X zNN*ww`QKjXK8=>lMYU%|3s>m1D7HN5cNB{n8+Jkpg~l#?_#xp# z?b2MvD{qUIK0TwAhH}g_lLU!^h$FFdg3g&{Dxp*>m4He^Pa$*2t1%p>`QJB46Of2< zDQC}s_1V_Ty^wH7Qd z$-dyTo_dOlaS9?=Mz-!P%njWgr-}pd8pC%busNt0$3I{(~Vlg zb0;8Ym2u0X1f4jY=STf9_e)DaX>Zh=C{K%t4lKLO%A?94vpZ#3&?slg{Y~!|WU%lY zM_ymggSRg;kLtIb;^cmX+osG^m}18VXTBzqr{?bWr?;yy0n}3xXgkp42EkOb3@NA7 zYq)JrCk+C9ifpq>OPH~a5m*>o7yW^YF?R#!Ylq^sz9f6zX82Im1d2fxo$2OGK8K{X ziB4N!u2My}J(Z`JB{kSPP@$FFyDgw2gjyL(WBi-fTcC1Yw}%DF-Jh(^_s|1+wzh9m ze!tp^+}7T>cU=6eUmr3GJcM6wPno;mfJ zJ3tdBcp^ZOGYSN*gx-%{=D&E}M#&?Ci^`&|lt1rZ8kMIKX74zhA2+7~f$y4%!r{cDetrnQd~Gx*>!`hjY%<6@HXNxjKbk^ z%oLW(;u%kSUVueYIV@qtz-af*Cyqkv`WxS_(LVXcBxtxx%3VM?qLL$nj+VUw66a67 z7NS&f#FiEZft@CUt}o>=%tmK(0{)L{bRHo%NW}0U)H6cz4fQ#k zzcO%Z+IGd2=ZFJv(N-*U0;C30grJj$aUfNzv5lxGqQ&@%8dblaTDc6UBQW|+Lieej zPrIJVGrHf+pKhl+i2eV)pUz)F7qou~zl|GDcRk-coGb6jro>6)DtdWtLP>+uML&>f z7n?*5xj&fy0@x#*#%l~f*Dc`i z=cl1z#?cmGW5MB-*^)H3BTx!bmrGQX4CNFE#q^<*PNgm}f3 z3W>J?EeprNBSL0?+wh2I=VGGz-5rd24hiBFwq%{j#XR&z?7DU{>MfKP$UAZe* ztxPms{Y4EK%wA3L<=l<}_ZHuso6({~UW!FW2mL)>b?}NTY~_?ww2mb%VJ>hPY=>@G zk*4C$3YSc3^PfP1O`V;41W7ykM8&aLY;*{G8gvV2c@=Ca@KO$zXuL`!cK(VH`EcO8 z{}-^)niyNFHLvE{E@Knd)cWlrrF_%6+bIQF7@{i_?*3I&4`NxLeJYiegHrT2diLQ? zu7?n2Q>VY(cEs1j{Je==?P*+RKxdmVumq2O$jtPzRD>BH5->w^duAs}vyh#0-WbCM ztJF{xyYx4ECx-v$jl~nYKzqQ0NenChVI1J*IjXC@v&x<+=PcM=g9Qn(c}lzKSBPtz z15*vnzklm#FV$&u{=U0RzhUtjr)ur>Ht?z&@LT2YpUwyXtnllGEopK8;ys4{Vj?k^ zS2YCGah7L|yZZV$o7Z=#>DFR$UlCPnz(tJzvuyNISu?hRqaJ+CuIB*A*xTQ{ElSxs z!+RW<9M$na2bcol{-sn;N*;UF``Pg5{M^|7o8Z0Lt#?KBXmw(aNZ;WW7coJ?*X92w>lmr~9{iU;_2f^8=T9D%yvxThLuz zThAoBBR`Cd3s&*+ft@}x!ahN{+M_dtM#6!BJlHy9k5$=j-30WnyMiFJY+np-KH&6V zp*_{!p9qU1SVGg5#+S)hJO4W1;db0}i*U<<@8f9q6ky!4d!*5I+);?y2bD#%K>%)K ze@wcm2@Ng6|8l$?F!OQRf8|*4@qN-L4}5+fG!8r}3k@5$t@V5$SU}jtn#~n_xwyD} zvkvs}d0hBe5QSUjwlc0q)EeqxyMOUe(0wZOK6W|H@}47p<4E=k*>UJJ4IU0Q1HPlL zQI!b?9)8cIR|hAV4tt=s@b)kS7Dpk>MU-?pOfs~>fF(p?;xGg?(S#m5HUw0>oh0BE zRFjtVp}?t~!~-5ymkDQDel`Oh&O2SH(O@R6K%t#PIrtyrl1ncRFv^e##=;pk4IWI@ zPwp^;s5mJNKHL`Hw!M%>>(8cPc>nzPPEV{A#C`^Ru~<-t0m{x@EoXM8!A!}E*I|f* zxGoL$gJ`l?JBi4i`e0gbam&xT(O}8%PAO#mq`~{Zc1ItE#4^$Rt?_wCxUaYqGi0LS zc{(dR64gs5^`Pt-S8!P2Uk+BzP{s}?7dQ3cY%zwYrigreaZcE_Sj_N zUYec2$c1Kp13+j2ze%7>N-O{K(s;Bt*XZhQcq2Kn#xy$|jHT+tU$y?wLU#?|#^T;gJ(fqg*JJT*cPl~pW_DWBR8H7)TV#IKq2@ymd_+GjS z%Q_U;Yyv?R((QCy6BltSr=TBTc^Pr&glhtdqRc_k>HO};K^bY}8dZ)vPpUtKU*D=r zP=9y|G>uQ=-mH@pZ7#D>u^*sLprDqunafy;8tQSDrPu(GddVHq%ygD-uXE;jxZ=W< z`dVZq)w2sVU1}_Q<_Mn9FS7KO@0w_$Q)%u)MqpjyGi;Jfbv>-ttKmlH(VknajyYRp zgqP_{Hnegr{kE1A69un$7=c>(#@PkcC|`MPhI+JUQ~BbXvRYUDwts69)3WsC?+=%` zu#V*K2k@uL-ws!Qz3d@4r#u%7OxzKOwn@`JX&vv@a~u2GA9HF)y)5T;SL7(&1ni4= z7bcd?t&oq~%cyss1}JWKa;oQh>fiEM9|v0KCzK1nY{pCz{kzC6-uRMHL}NJ-p`;gxl9FR^lo5*7oQ4lrS-8y-;w4y_e{WTK+KvJs9T*!jMjU%^RFJA3kNDhMQ^3t7qzkLZN?`Rb>SKI;Vha4vE-68CLH zLjU+?Nx*8D^dm||{z(hne2##1h{P!X=C?-f9}KN@Um~Tc8is1jj1r%(oZ9Ntqa*o&YTy3t$yDod*c(YxZ>v)w z9bD`}5-$vU9hsg(YBj$mTW0>Y{tkhZplRvz$RAmGKIFOc{I{gnI@P|BojadcHXx5q zZx8cdp0D%N?!ao173P4a>+-Kh9_4=tfQy@$=`Nm+Nk?P9mzNn#=CAwnD`;aL$y8;f zz{m9~>95bd#%+&n-|6-xYwZG{RzM;AU%Uz~or=dlO zr;*p$n+Vz{?J}SgZ;!esk5)Kx4tZILWAcJJs9$#5t6Qc_SV5^!R}Mv&Z!5LAu0eDn z{m7aQ_)*^UP8J~i{!k$ELjd&3?q#slgTn#Z!@W$ynM=N}{28Z3AAQuFWyOW8ed=j8 zJ?BQ&rj8zzwQKY2gf;>z{>B+@W6mXJ%l&+bc3UP+s$PG~IDWG042i@d(RDEL84k+fl7mpM z?k-1)J|~5_6gNRqp{qK5<*f4v>U+=pcgsO;k^8?Qjm0?ZlJGm9XpeEvg0d;BSrDEr ze&%ZOV;FB4K2xDv*^Lg6t7G0|5B(`$_)!n1>_HqhMp!s{CW(L5x>^x-D0~zadH=H= zP%QG{u^FHjf=gum5+q30G8FfUJ-BSg3+QOUfVOwRJETH(kR&TeyO#+MIV&u9`x z+If$aLZ!*Vu^#%JtX0&;t3tCyW%LKK6lKcP421rPGxgF-+!IvY%~r|PNzitGZEkAwg9}k`|RxhF1+SZq$1jzTHM_1I6Y{a4Hr0`f*MW;pbPWf)8pH@5=EYSf_41s)BYL zAA6NkywqHDNYw*dJavRgkr#2OJ}W=Q@*LWMVSmf&jVcf_5_csF0tvcdHUY_Tm(Cn| zF$@t3!e{CewaVZ?u#K!WmDst2LbS+TNIR*qUlLT*Drn?E;%(6+Xiw?ShI0Ru&S0Ia z$MvZ=|1hMBmKIBlnA!&iTwZq zs(ch8Wd^=qGO#jg2BJ+I5O~DL#w!^}i@|dtK=?A-bF4jJdQ`i}r&YbG%>-^-JSvx& zFP?*&&PPtlSJP5knPx#Jo>H1i5#2w#>Lzw0X7^b4k(C(@Y^W2@` zdMQI@jvzZt#}>x&pH=cd5Azz!g@r%5r%BxLL97MO>I)BaBG7MVt3W=1y--@8*opPMHKB0v z8R>pI2v!$Cu=wTa$@ez7V}#}*O&Em+OuFa?LzyIGJf@0?_$~`>si}pKW($`*@CYNG zJfxzB@%2IyDq^-aGW@v(9uj|hr#B67`rJk@knE~h?c8rtEq^2ZbvT1~S5Q>uL}*^( zzq>R3dcXVX-2ON#Y4i;I+FSjCG+wj+y;{2B@`6M%?L1@>ET}Qani>! zXy`-!o3RRp$np#|C=MPfS`;D$iCV@14rVkN4-50xQ6%wBLu~99Ed|qI@%iA&zawvE zDA|r{4XQZ1GSl2^LJN*Th(QClAhC((;~*$o>!4y5CHbwk1J>w19^Mx)JOFmIuKMT; zz0$wErj2siZ85$AUNVcIIGA?Z0Cs?PjJYdv9+dPIF-M) zEllI0U zrWlk!G^xl6?8tjDEc2Fq!4tna%;N8{;9gX;BGpw#bxD;jW5px!8|vb3LzE*`th&Zt4y<_e-S6B( zfi#uRi;LLn(@Qb)Ww<#EK8d2oGw8_I%Ds7QO+!aFlDgzYQ0(>9nI)Kt`V=b{xSWbk zM+~c>F^UxYeVBg{sAO^-hY`EZR;{lryy%0YeN+O=VSkDwtRX6@kZs>pIjwGs0)4V` z&wXdUM?n$;+ba3bE$*6+xa~vA3v6z?B%O!4_BynMtnInH)Fz0GRjxS5=(sYGCvm|2 z`)OeA#{ud&?RA!xChI-p%#J^LOD1t| zZaLF?(S2<>YfniwfxHR02H4T9{b|c0sP%T;WxZ$FL=ce<3%MJ@!?rmIQw^YZNJ>3fX zPc>pd_ZkhOLvK961Oe7@&o#rv#_QHr&?w$ zD^+&M%I4)f0ckOWjuAybOl>?*Ghc!Wf2P7CTvN z8W}oRO$^Mg;o7tYTI=UwvslR%)R3F5Ey}4JW52StrHyO%?g(QQgfMR??UCWT%E$T6 zB|Pl^c~3Q6RsVp|URq4w@<5(LfRE>o*9G-xg6M$b+`h0+=;gORyO9Id;7}0|EuZYP zhidJH8W8dL*Ynls>J{%8@?Q3W2JdZ%i+f&rAu#ZL!~qG*YrBJ&pYP5yr8#+9d#g6< z9rk@Qh#qtodrM^58wVIhNm}2CP5y_C@}SKpf*|H5pq)Ij;Q@oDhL@HT|EU|!g_mq1fd?n!Akg84 zzAHlWyph3;SgN?5{)48>vqy}RE+2Hy`1S}$_H7j*g!-! zDCAJVo0x$ZT;EF^%0Rp>zmz}gls}-mr0*2XxR65y;S$xj;k+e%<811#KYJ!+ZtXjY zh_=qW?Op!X{ps?0o6JIVjtG>jS@rojYFmtmu{vT5@EI~7+41!M_v-~an(h4CA!=`+ax?hhmk0BkW`EbB1p~5($~?9BIjs{+BO?RWYpC@H2S-W0 z=e~;eQ(FBw;Uw6(I`uvWqbBPUV_hsHZTxz3NXnkdRDv>DXr*#*cGpI^GiELbPQq;q zAf{-|CU!NHN88FcV}43J4DX6OG}mpwpDWR*_NNkxpd0*t@(&$z zHdsB^bEX9~+(r@0Va@^p#tV$Ml(<*a2mos3-PJJ*4CLJ;wE2=%2)>TEN!#e-E zb%DU8(A%#-sv+o2YE(*ec063!0VFMlj4O?w(v53Yw(V{0gP7b0gJgrX+VpRiYJ<6q zTt89+>ihs^on}!w@jsYYsGB!kZ2gxxer)7frZG=!Y@-ZNrL9k-X}VjPei`}OdjfG5 z(Gsc5W&qIjhIi`|Vlc3?lWdu39G_OWUkVYE>ad$}c%KfqVTESfjQwv))}yuv=UTQQ za*tbd|9r`G(BR^e{StnKlDwqfP;A2@I6v^+Pz*g)+CLeU6OpPRQ>+7fo|FAt93pda zP{g9W%Te|LN*+bM%e1zH>eHNz;}f$Pk43>TNtKIpqYc&5p)!yrm}yX%{vi^{i zmq}@(HR5oI-v_BO;za0E_o<|ID&NoJ@!9{WxlM@h$A6%JU#9WE&Q)Z7cAd5$Bu$c$ zB1`y_>0kNp_uQKi#_b=t;eoC&pNa=JDQ&oD`-tJNuR8;+Zd50^s@DP!n-Nmh6s!){ z`vT^$iih64-ewAe-t=1W*W_xlznVa)g2rrYmPmEE5ZiznVBPprs6kfFKp7maA`Q`W zr6xu(VYapTFr-jKp17cYabdG0YyYEw*SQhKyqs;zr6}%R_V&N(co?V){JIV_;q5k> z)})Ty7_fF;0-h$Cu%1eM($-ISlteS73TifWnHKU9%xh%Ul{brje)x{A(ep}!q~o?> zF1$g+Cy0rLlA47148uI7azN21hdg5DRGj&M*M}72#`Z(}47jEBtEZiZ*5@5GR{@B7F;egqwj5Y`OY71AsbHVh>tj!D^ZNE@g2z!jY`iCsz~%R z-H|{{xqFqLfWpA{L*h-_tC#um@8Z4dSKwntcfSAa?&)$tUka6Iak6HRB>8bXzTBqD zZZVMo2Q)*?1p_n)(tkjc$r(d(5JFl;PmaQ3nHzRgs4As=8fj?~hiiP!-5VHgwfJPfh=HG>qyhTr%rq5tIee=hjDnib_T+VLYC7|yIhwpiyp0o zIcCo51HUWSyC{*DmBmYsdRQnaKU>^vjE|83%0en416n;6$RS$zbHr4z8m7tTKI5Zi zt^<7?{RuPPX1x`C>}!1WTiwx#GSLW;gkS_*C9H`nYvj%8n$V-sk!7o^;CPyN zctzYhp*9?SFqC|H3um}7o)x8kobCH9?UX@sOTu&VojG92>cg*Cw5AsSnZMbmXdsV( zS63!ChBA|uKZ*m#>NIuZAT8{uL-+3@gLJ?%!Sf4I$DVs)5QF)jvcha>RoKt}Vhd-Y?on|uxu*zt(fDW88)|cDL8ge)NB+}nC7ET>S58@B_-CT)Izw2`A>HIKT zB8afh{5};3#(zkt45RG%x`cK%b-1%L>zDfk{#{%RBUs)J(c%fGFE&hQ)pt3NPC`NA>QhXo+Qf`HzQVy~WuB!wtVMoohs^n3(K21JaY1y3j8f(M_iV4e1 zZjFanwdn}+(2!viVpn|emr$DWL&d~R)YN@?RGEOVOT0mLNwmx|#iLm`pw;cr@8lw02gs~cF#_PY1v(yx*tjo1&S z-51CCf08&>{|AZFah)I0)!_y2M@0vmKCUxGiJ!ZAz95wFNnjS`l3_2UX*5CUNd!l5 z46?&1Lzk$Ux9OP;z6VDvlgWOP>yqvXTPr6H3zo-!wElW^e!3;@DDd0G;_@C%kv?3d z7=WYXeajdBpywTqfUHR!cNlHY7yiS=+?7j=gFu^smfEx^iECHjGnq4mgnpGuX}w6*m{6Bk*(t1+lHH=VJB%P%b!k{$g>}y zNw<;@(2kyk_o)XL0p-2dNMY7N+i@|Fl->B);$-g*WN>)>*Hq>#rZ1Z|HYzuOS&F>_ z&ysiuqyTO*sDkgUcs$MapP(=&|wE%7v!nPMf;@w(=?(>I)B9?nVzS{THwrK9;XJ1uba!( z-Nb|jG6(FiQk|q-CWH~xtVh4UpaVmE$c4%g#HX;+5W;B4@Ol9hMB!o2Ne~zu>BO>q zCVlthsxyVV(#0|Z;|UV@umbNg6bL6TNe}~X*ZqUDfer640r0TH2?Gym2k$UFy|=V? z3KZ^Z}*sFc_Q-A+q7bw`g(E#ITE8Y5@|97Mj?Q0(l7W z<2Fz%T*4s;pk@IOduF${iNSU`Ym9hVMV?U_&G)5+EwTg@yNM z-{J1aIpm#-seX`u?BAsh3$dF842Z+w1q{FkAOuhp;zGPfDxag@lh z!L<#sACptl{2T1@lg|mL5r7- zBH67G5@l-3L35>s`!_!NU)AqM{tA>rD^C!nSkG=RPU3`3XZ$fRz-jW`(d| ziQ3B3Z!PcQ3R^32sE(h2b|j;~;RF$i8n91}ObXa1B_;KMmQ#w|gvIh`Udij}GBNio z)Nu5Oz?wJp#98yEVrKHNK9Ovx-n!sAQd|_jj<=#wO7)UT_Yy7U4bo38hjJ_};|T^l zqn(dSB)(Z*56;Ooo_3nQ+{OH!tu&bc_)TlFm}uinYcF(E=zRJLvs7rHc$>WEKS8nF zMqV{{^!10xLC$^*I_lt*)BIZ`NC&3R**pym{sxL8W2(Rp9aBOfVKU!!DGl(w)ovHe zx@==yG+o>EsP9TAy5`TP#y5@@?|2$hlOMHfb2(=A>;~!0x$tO}eZXyJ4zIrpdGhUTqui7P+3(c#NfZSBX_%Jib>&q;g=T*6747K}LSd~lc z>F<#$0#YR2LAv4mcZo^@+jKPCznbyRKIpAus3T_H#%n~jX(bUArIiFlC*zbv6_o_y z&2dd*Nz0VF$5}~YSR6nEqzQ7cQHMtee9~W=*aMEK6zd^XqC&dBBJK!?#V2fH~;v)!|tEuC^A$> zpi)y(k9sXSEcmNW-gn%c?{j`Aumd7}$6f7O^m+ND<#P~%8&lCgi{}pq)b|=}vZWM% z|MC52-;JQh?x+hBm(IN+J|gs+WtrZ`23pM|av{tw78(&Pl|B+6*Gl z1&E_UD-DLLUUUxmfZ=Q^HTw}1FD`_U1Le_VzLJ#7Cg>0`Z3fgLgwNyd0>8S&4*BW= ziKbJ<4QlpDAr;%>vEOkH`9LR0XqInn{r6l5SFR4#s$hxbhEfOwuZk?dXk#91?k+<{ zhq?^Gbja*rB}GDQ4^{ZRYS2%Wfy?FNegQe{;fQg&H^?JA#m%~@ssJdk3?e>RfGLSg9l-FZoD?x^B z;{^N^*kiKgc#|A)qs52}3%gl~NrU^ZTCcaSW~o}Qj+xw>=~2JgM~(eK#3u;mxG@-= z_JVNz*9F!ioHtR@<384-OY$}lHaFACv^KM-Z%ao91^aQRFHyskIRG+_`9ksALF#zE z9mLG}+d(EO|KlKk<-Q$62lIbAh!*6xgIH*OJIHIF(X6+vz0XBF&)uAX-$gtFo0l;+ zK{crLsb}K%O0kq1uExND{_v1?TM}JaAxt>hujl_} zrc6Bj5=(ooWXLV&agRu9da0nXI059pbyv?R-!;uVMZVBXJShy)fF+2-W}fdkqPB1S7Z1ukzZI?YA2Gyj~7s4Ln= zJpE$mdXjpvN2x&EZIMHi3cooZ(eQ_~OGOvPA3~+V52EA#`ziC}xgw8m-H2We^oOLc zMMaR3{-6ehjQj2JAK5G@VQ|<~?|w&7s?3eX9Jd zKn&hyaHsD&`){esZ_$Wdj;EoMU7wFl(f3+n|Tz{P!U>vONP#hT4P-%i!eSJ zLoNeX0EiGhULnQ8)foDHSh0fMyIawg7`*s4*_hScO~94(GX|-%)iAQ`-2{@bkGYq} zOT^DQp5E7PN<_%UZ;Rx$8diU%AGiqmoP91>?StMr5&&)7pLHUzqW(UxOvHc3NOpdq zOQpML%Jfoi?+N;JujI1Q*^6~>1SN-IaU-z_`9h0@33!Yn^!FNq`@V!NsXUPTJyJ|o z*b%^!hY!#!N-1<>_m1JR6Ne=j+duQ>13jhd5PV!;aOfwfQnizuy>1yS0;mPzTVrT~ z)B9UgNYNoI^1(n1_1Ep*xaX$P_umI!mxbgV+aGOjm#trE13XmbTdZ^VDME|=&jPsx zp^kfE|BiwbvSiik?Gr_9cNr~X$yD^^hzq;x3-PmThWcJ|;OP49#&YBe$>vxvb2VHT z)OU>sN2xph)b(Dc%5G^4f%I9?ar8fL$eab4vD-2+^t0uPInznTbkf;^RaYeU$skNO zM%PIA)S9@h@8KLI9eS9SXph&15BPS6d^LvWIYg%DFUh3r?f@RvUc6brpQ8NAskmx?o*= zjH~BrT05{Lt=)HHEZ3(^Eo)bs?x#jC561$Z@hleHO}2Nl6_-4|bfb@@v94n()>zIt zBd|e-wx;>`%6?{IsrT+;E$=0z*__64Rf}the~qwFi>EGjPj7EI40r2mmvp!XZhn&*aOU_k)?FJE&=ZTd`ghTNeN`dvJ;v5Iu5L6$#3JVrC z{8&hR8x9&Rj=Y4ZIowb(Yi1p!`Rq&~4NeRds&%iJ3&NFUp*4l7ISU=IDK|KJBVIz@sECy!+8vw@7j028O=U?EBhHWYz I#b6-+4Vl+xWB>pF literal 0 HcmV?d00001 diff --git a/logs/sys-info.2026-04-28.log.gz b/logs/sys-info.2026-04-28.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..0ca8ce1a15908b8ed210c12072770397dbba6758 GIT binary patch literal 3176 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 O80&w35!Z0yHvj;P%pipT literal 0 HcmV?d00001 diff --git a/logs/sys-info.2026-04-29.log.gz b/logs/sys-info.2026-04-29.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..ced839e6c81e12a727eb7b499f5932e379b144b5 GIT binary patch literal 1737 zcmV;)1~&O0iwFP!00000|Ls^!ZxcrtzE|ph7@+?E_Jf@ z?tDG(yr0jkm9cV0X56r*k(td;z`uo-ZQ`s~1+NFL5emuzrdH9ymAR`3aa_Y2#A7Z| zTwoR`Dgxr+x?&z)qCzqrAOp=WW%S3)qj_fQ5sIRvWEPsj8Jxv)3?_c~fz^YbMaw>6 zK?hM(u`9Sw1i`cM?@Sna%pocUD=Q)t3#zD3Z(Zt+MY2JVISH`lBx*2KL&b$zG;NwW zbZR!g;&7L)G(biXe;dU0S+D}jR;gNXJR&8PNNO1BBD;yAegyyfCZ9fz&0MQdRNAuU`&@ z{-M52T^IItgW4%^3LMP4sfK`Zu#H{#n{5WfXHJRNwLxZyB4u6|4h38{?lQmyh>ROu zs;Hw-F;^~ribAhm1&xxxMKmC`2hy;ipt+B?$mS*$xW?9rV0b?I*$3_u2?k2}3dZe+r%e&%6k4X?SjgA1L`1wZu8Wyh)MSXuY&>{8DO z!RFK*YO6=GpaG%aB7#y)Fb34H9LutbWZiM7ly6M}7P~X@IMM1~Hdj-^jDdSYh&2bx z*H5m=10f4Cfhv6-U_o6b;UTE7DlX}VLUa$JwQhgc`tfe--d89Zg!XQIzWaP zP6d**#~tF;xKw9MOJ`2Vo%vjLa(Y-v#z&B3>Nq9Y?^6VW!SEVf6#Q$(mP$Y#EjxmR z>cS><>QInADhGslbC71QLm87G&~oQt6)iWoSeGGj=qi*GsxJsa?o&i0>h$GNA-{4R zy5ve!9nMI-<|4Px=pj`6FYLP%c6wk4ujw#rNAM!B92u3lgE71o_Z$+%)BV*Uak(vB z!DBQ~`i2WS1ImbD>Y_ti^gsg!pw`Z#SGWJ%{pr_*;>#yb^T?dGu$j{=$ucL00=Kab zR*?8|(}v|`(W}eeIzH1Nf<~#O%A!KiI|O16XifkbJIYHkq6ZZLDO2kj+ng)hpmsth zv?BF1JQD<5B@4kW%W*%@34KRJFVeZ3MRO!eou2)T=Q9UM6PT}oL+k_9l33b_{mxU; zHQtMx+ps_1r~q|(ar6E^f8A@{dHDMI^VZJ2SGTwOp^OitOR$_wNTrN6kVn_MeHO4+ zYY>6$U07>!GhiHMesX2uD%xl#`7E9SGmpFsPA#P`O(m!gz7{*y($QC6v$>R5)dVH3 zj@8BU@C=MJe(s8`lkh0(zL~v4rti}UbkMZ$_=E{Y0F#3Zr+^M?I)Owz2()!{eK51w zoHBdacOPMN9>Bonv8N*-fOJ!q^coMDbE(~sP6Orgg_lpB?LB(%dgsyJgIl}b-fwOH z-1_D*_*3i7_e0`ItYy_mO+fHd`zuB5X~3)Ha-4C7Mo99GgLT#HB%esBsVzk*(^!LC z<3wpmA1B~o7m|qnD;~Q$kYco9;^{tg1CS>MAwzk`)eiJU5jt`11KetgH!)j`;GlhbKb3A7Ncr1S^{>rtwg5kkD=j(4UPQl}n z9%h`5bh5o@U&|a-77tDc+RHjD>k_Y)q85Gbl+D0tKS6u1D90niAr@-4p?JvqFxE&4 zssX#SDGiQUL8Cd0qX!HT%%e$jki+mW9GSz6h8UMr2RLrR%Hkl`Z$~=Z>@0j*xBl4s z`j^)B7p*UUd-?2H>&_4H_wLibcOTz<_4`9T=)YOwDDMyAf}pLT6@`1=3ymnlXs>CK zToIpm^_!aa0zc?Q(b4n|7N8YU_f!{kmO@nWW`x?u22m_TIpK}(k;dM=hY-&@5Upc& flO9u)riyJ_NvTphmmItft+f9FIWnsq!507kC9_4( literal 0 HcmV?d00001 diff --git a/logs/sys-info.2026-05-07.log.gz b/logs/sys-info.2026-05-07.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..c33aa77a502aab014df3294fcf959835e44b4fab GIT binary patch literal 8260 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 literal 0 HcmV?d00001 diff --git a/logs/sys-info.2026-05-08.log.gz b/logs/sys-info.2026-05-08.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..ecf503447b4392e25f1f04c430550587ffc24c85 GIT binary patch literal 3708 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 aV list(AppDeviceBo bo, PageQuery pageQuery) { + return appDeviceService.queryPageList(bo, pageQuery); + } + + /** + * 导出设备信息 +列表 + */ + @SaCheckPermission("app:device:export") + @Log(title = "设备信息", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(AppDeviceBo bo, HttpServletResponse response) { + List list = appDeviceService.queryList(bo); + ExcelUtil.exportExcel(list, "设备信息 ", AppDeviceVo.class, response); + } + + /** + * 获取设备信息 +详细信息 + * + * @param id 主键 + */ + @SaCheckPermission("app:device:query") + @GetMapping("/{id}") + public R getInfo(@NotNull(message = "主键不能为空") + @PathVariable Long id) { + return R.ok(appDeviceService.queryById(id)); + } + + /** + * 新增设备信息 + + */ + @SaCheckPermission("app:device:add") + @Log(title = "设备信息", businessType = BusinessType.INSERT) + @RepeatSubmit() + @PostMapping() + public R add(@Validated(AddGroup.class) @RequestBody AppDeviceBo bo) { + return toAjax(appDeviceService.insertByBo(bo)); + } + + /** + * 修改设备信息 + + */ + @SaCheckPermission("app:device:edit") + @Log(title = "设备信息", businessType = BusinessType.UPDATE) + @RepeatSubmit() + @PutMapping() + public R edit(@Validated(EditGroup.class) @RequestBody AppDeviceBo bo) { + return toAjax(appDeviceService.updateByBo(bo)); + } + + /** + * 删除设备信息 + + * + * @param ids 主键串 + */ + @SaCheckPermission("app:device:remove") + @Log(title = "设备信息", businessType = BusinessType.DELETE) + @DeleteMapping("/{ids}") + public R remove(@NotEmpty(message = "主键不能为空") + @PathVariable Long[] ids) { + return toAjax(appDeviceService.deleteWithValidByIds(List.of(ids), true)); + } +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/controller/AppScheduleDetailController.java b/water-modules/water-app/src/main/java/org/dromara/app/controller/AppScheduleDetailController.java new file mode 100644 index 0000000..6cbc754 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/controller/AppScheduleDetailController.java @@ -0,0 +1,105 @@ +package org.dromara.app.controller; + +import java.util.List; + +import lombok.RequiredArgsConstructor; +import jakarta.servlet.http.HttpServletResponse; +import jakarta.validation.constraints.*; +import cn.dev33.satoken.annotation.SaCheckPermission; +import org.springframework.web.bind.annotation.*; +import org.springframework.validation.annotation.Validated; +import org.dromara.common.idempotent.annotation.RepeatSubmit; +import org.dromara.common.log.annotation.Log; +import org.dromara.common.web.core.BaseController; +import org.dromara.common.mybatis.core.page.PageQuery; +import org.dromara.common.core.domain.R; +import org.dromara.common.core.validate.AddGroup; +import org.dromara.common.core.validate.EditGroup; +import org.dromara.common.log.enums.BusinessType; +import org.dromara.common.excel.utils.ExcelUtil; +import org.dromara.app.domain.vo.AppScheduleDetailVo; +import org.dromara.app.domain.bo.AppScheduleDetailBo; +import org.dromara.app.service.IAppScheduleDetailService; +import org.dromara.common.mybatis.core.page.TableDataInfo; + +/** + * 排程详情 + * + * @author Lion Li + * @date 2026-04-25 + */ +@Validated +@RequiredArgsConstructor +@RestController +@RequestMapping("/app/scheduleDetail") +public class AppScheduleDetailController extends BaseController { + + private final IAppScheduleDetailService appScheduleDetailService; + + /** + * 查询排程详情列表 + */ + @SaCheckPermission("app:scheduleDetail:list") + @GetMapping("/list") + public TableDataInfo list(AppScheduleDetailBo bo, PageQuery pageQuery) { + return appScheduleDetailService.queryPageList(bo, pageQuery); + } + + /** + * 导出排程详情列表 + */ + @SaCheckPermission("app:scheduleDetail:export") + @Log(title = "排程详情", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(AppScheduleDetailBo bo, HttpServletResponse response) { + List list = appScheduleDetailService.queryList(bo); + ExcelUtil.exportExcel(list, "排程详情", AppScheduleDetailVo.class, response); + } + + /** + * 获取排程详情详细信息 + * + * @param id 主键 + */ + @SaCheckPermission("app:scheduleDetail:query") + @GetMapping("/{id}") + public R getInfo(@NotNull(message = "主键不能为空") + @PathVariable Long id) { + return R.ok(appScheduleDetailService.queryById(id)); + } + + /** + * 新增排程详情 + */ + @SaCheckPermission("app:scheduleDetail:add") + @Log(title = "排程详情", businessType = BusinessType.INSERT) + @RepeatSubmit() + @PostMapping() + public R add(@Validated(AddGroup.class) @RequestBody AppScheduleDetailBo bo) { + return toAjax(appScheduleDetailService.insertByBo(bo)); + } + + /** + * 修改排程详情 + */ + @SaCheckPermission("app:scheduleDetail:edit") + @Log(title = "排程详情", businessType = BusinessType.UPDATE) + @RepeatSubmit() + @PutMapping() + public R edit(@Validated(EditGroup.class) @RequestBody AppScheduleDetailBo bo) { + return toAjax(appScheduleDetailService.updateByBo(bo)); + } + + /** + * 删除排程详情 + * + * @param ids 主键串 + */ + @SaCheckPermission("app:scheduleDetail:remove") + @Log(title = "排程详情", businessType = BusinessType.DELETE) + @DeleteMapping("/{ids}") + public R remove(@NotEmpty(message = "主键不能为空") + @PathVariable Long[] ids) { + return toAjax(appScheduleDetailService.deleteWithValidByIds(List.of(ids), true)); + } +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/controller/AppSchedulingDeviceController.java b/water-modules/water-app/src/main/java/org/dromara/app/controller/AppSchedulingDeviceController.java new file mode 100644 index 0000000..f21aae4 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/controller/AppSchedulingDeviceController.java @@ -0,0 +1,105 @@ +package org.dromara.app.controller; + +import java.util.List; + +import lombok.RequiredArgsConstructor; +import jakarta.servlet.http.HttpServletResponse; +import jakarta.validation.constraints.*; +import cn.dev33.satoken.annotation.SaCheckPermission; +import org.springframework.web.bind.annotation.*; +import org.springframework.validation.annotation.Validated; +import org.dromara.common.idempotent.annotation.RepeatSubmit; +import org.dromara.common.log.annotation.Log; +import org.dromara.common.web.core.BaseController; +import org.dromara.common.mybatis.core.page.PageQuery; +import org.dromara.common.core.domain.R; +import org.dromara.common.core.validate.AddGroup; +import org.dromara.common.core.validate.EditGroup; +import org.dromara.common.log.enums.BusinessType; +import org.dromara.common.excel.utils.ExcelUtil; +import org.dromara.app.domain.vo.AppSchedulingDeviceVo; +import org.dromara.app.domain.bo.AppSchedulingDeviceBo; +import org.dromara.app.service.IAppSchedulingDeviceService; +import org.dromara.common.mybatis.core.page.TableDataInfo; + +/** + * 排程与设备关联 + * + * @author Lion Li + * @date 2026-04-25 + */ +@Validated +@RequiredArgsConstructor +@RestController +@RequestMapping("/app/schedulingDevice") +public class AppSchedulingDeviceController extends BaseController { + + private final IAppSchedulingDeviceService appSchedulingDeviceService; + + /** + * 查询排程与设备关联列表 + */ + @SaCheckPermission("app:schedulingDevice:list") + @GetMapping("/list") + public TableDataInfo list(AppSchedulingDeviceBo bo, PageQuery pageQuery) { + return appSchedulingDeviceService.queryPageList(bo, pageQuery); + } + + /** + * 导出排程与设备关联列表 + */ + @SaCheckPermission("app:schedulingDevice:export") + @Log(title = "排程与设备关联", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(AppSchedulingDeviceBo bo, HttpServletResponse response) { + List list = appSchedulingDeviceService.queryList(bo); + ExcelUtil.exportExcel(list, "排程与设备关联", AppSchedulingDeviceVo.class, response); + } + + /** + * 获取排程与设备关联详细信息 + * + * @param schedulingId 主键 + */ + @SaCheckPermission("app:schedulingDevice:query") + @GetMapping("/{schedulingId}") + public R getInfo(@NotNull(message = "主键不能为空") + @PathVariable Long schedulingId) { + return R.ok(appSchedulingDeviceService.queryById(schedulingId)); + } + + /** + * 新增排程与设备关联 + */ + @SaCheckPermission("app:schedulingDevice:add") + @Log(title = "排程与设备关联", businessType = BusinessType.INSERT) + @RepeatSubmit() + @PostMapping() + public R add(@Validated(AddGroup.class) @RequestBody AppSchedulingDeviceBo bo) { + return toAjax(appSchedulingDeviceService.insertByBo(bo)); + } + + /** + * 修改排程与设备关联 + */ + @SaCheckPermission("app:schedulingDevice:edit") + @Log(title = "排程与设备关联", businessType = BusinessType.UPDATE) + @RepeatSubmit() + @PutMapping() + public R edit(@Validated(EditGroup.class) @RequestBody AppSchedulingDeviceBo bo) { + return toAjax(appSchedulingDeviceService.updateByBo(bo)); + } + + /** + * 删除排程与设备关联 + * + * @param schedulingIds 主键串 + */ + @SaCheckPermission("app:schedulingDevice:remove") + @Log(title = "排程与设备关联", businessType = BusinessType.DELETE) + @DeleteMapping("/{schedulingIds}") + public R remove(@NotEmpty(message = "主键不能为空") + @PathVariable Long[] schedulingIds) { + return toAjax(appSchedulingDeviceService.deleteWithValidByIds(List.of(schedulingIds), true)); + } +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/controller/AppWateringLogController.java b/water-modules/water-app/src/main/java/org/dromara/app/controller/AppWateringLogController.java new file mode 100644 index 0000000..4de30c9 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/controller/AppWateringLogController.java @@ -0,0 +1,105 @@ +package org.dromara.app.controller; + +import java.util.List; + +import lombok.RequiredArgsConstructor; +import jakarta.servlet.http.HttpServletResponse; +import jakarta.validation.constraints.*; +import cn.dev33.satoken.annotation.SaCheckPermission; +import org.springframework.web.bind.annotation.*; +import org.springframework.validation.annotation.Validated; +import org.dromara.common.idempotent.annotation.RepeatSubmit; +import org.dromara.common.log.annotation.Log; +import org.dromara.common.web.core.BaseController; +import org.dromara.common.mybatis.core.page.PageQuery; +import org.dromara.common.core.domain.R; +import org.dromara.common.core.validate.AddGroup; +import org.dromara.common.core.validate.EditGroup; +import org.dromara.common.log.enums.BusinessType; +import org.dromara.common.excel.utils.ExcelUtil; +import org.dromara.app.domain.vo.AppWateringLogVo; +import org.dromara.app.domain.bo.AppWateringLogBo; +import org.dromara.app.service.IAppWateringLogService; +import org.dromara.common.mybatis.core.page.TableDataInfo; + +/** + * 浇水记录 + * + * @author Lion Li + * @date 2026-04-25 + */ +@Validated +@RequiredArgsConstructor +@RestController +@RequestMapping("/app/wateringLog") +public class AppWateringLogController extends BaseController { + + private final IAppWateringLogService appWateringLogService; + + /** + * 查询浇水记录列表 + */ + @SaCheckPermission("app:wateringLog:list") + @GetMapping("/list") + public TableDataInfo list(AppWateringLogBo bo, PageQuery pageQuery) { + return appWateringLogService.queryPageList(bo, pageQuery); + } + + /** + * 导出浇水记录列表 + */ + @SaCheckPermission("app:wateringLog:export") + @Log(title = "浇水记录", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(AppWateringLogBo bo, HttpServletResponse response) { + List list = appWateringLogService.queryList(bo); + ExcelUtil.exportExcel(list, "浇水记录", AppWateringLogVo.class, response); + } + + /** + * 获取浇水记录详细信息 + * + * @param id 主键 + */ + @SaCheckPermission("app:wateringLog:query") + @GetMapping("/{id}") + public R getInfo(@NotNull(message = "主键不能为空") + @PathVariable Long id) { + return R.ok(appWateringLogService.queryById(id)); + } + + /** + * 新增浇水记录 + */ + @SaCheckPermission("app:wateringLog:add") + @Log(title = "浇水记录", businessType = BusinessType.INSERT) + @RepeatSubmit() + @PostMapping() + public R add(@Validated(AddGroup.class) @RequestBody AppWateringLogBo bo) { + return toAjax(appWateringLogService.insertByBo(bo)); + } + + /** + * 修改浇水记录 + */ + @SaCheckPermission("app:wateringLog:edit") + @Log(title = "浇水记录", businessType = BusinessType.UPDATE) + @RepeatSubmit() + @PutMapping() + public R edit(@Validated(EditGroup.class) @RequestBody AppWateringLogBo bo) { + return toAjax(appWateringLogService.updateByBo(bo)); + } + + /** + * 删除浇水记录 + * + * @param ids 主键串 + */ + @SaCheckPermission("app:wateringLog:remove") + @Log(title = "浇水记录", businessType = BusinessType.DELETE) + @DeleteMapping("/{ids}") + public R remove(@NotEmpty(message = "主键不能为空") + @PathVariable Long[] ids) { + return toAjax(appWateringLogService.deleteWithValidByIds(List.of(ids), true)); + } +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/AppDevice.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/AppDevice.java new file mode 100644 index 0000000..f8173a9 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/AppDevice.java @@ -0,0 +1,110 @@ +package org.dromara.app.domain; + +import org.dromara.common.mybatis.core.domain.BaseEntity; +import com.baomidou.mybatisplus.annotation.*; +import lombok.Data; +import lombok.EqualsAndHashCode; +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; + +import java.io.Serial; + +/** + * 设备信息 +对象 app_device + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@TableName("app_device") +public class AppDevice extends BaseEntity { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * + */ + @TableId(value = "id") + private Long id; + + /** + * 设备编号 + */ + private String deviceNo; + + /** + * 用户id + */ + private Long userId; + + /** + * 设备名称 + */ + private String deviceName; + + /** + * 设备图片 + */ + private String deviceImg; + + /** + * 状态 1-工作中 0-离线 2-待机 3-故障 + */ + private String status; + + /** + * 电量 + */ + private String powerLevel; + + /** + * 电量更新时间 + */ + private Date powerLevelUpdatatime; + + /** + * WiFi名称 + */ + private String wifiName; + + /** + * WiFi密码 + */ + private String wifiPassword; + + /** + * 设备型号 + */ + private String deviceEm; + + /** + * 设备序列号 + */ + private String deviceSn; + + /** + * 固件版本 + */ + private String fwVer; + + /** + * mac地址 + */ + private String macAddress; + + /** + * 删除标志(0代表存在 1代表删除) + */ + @TableLogic + private String delFlag; + + /** + * 到期时间 + */ + private Date expirationTime; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/AppSchedule.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/AppSchedule.java new file mode 100644 index 0000000..8b1da80 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/AppSchedule.java @@ -0,0 +1,54 @@ +package org.dromara.app.domain; + +import org.dromara.common.mybatis.core.domain.BaseEntity; +import com.baomidou.mybatisplus.annotation.*; +import lombok.Data; +import lombok.EqualsAndHashCode; +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; + +import java.io.Serial; +import java.util.List; + +/** + * 日程排列对象 app_schedule + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@TableName("app_schedule") +public class AppSchedule extends BaseEntity { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * + */ + @TableId(value = "id") + private Long id; + + /** + * 用户id + */ + private Long userId; + + /** + * 排程名称 + */ + private String name; + + + /** + * 状态 0-关闭 1 开启 + */ + private String status; + + + private Date createdTime; + + private List details; + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/AppScheduleDetail.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/AppScheduleDetail.java new file mode 100644 index 0000000..886b521 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/AppScheduleDetail.java @@ -0,0 +1,66 @@ +package org.dromara.app.domain; + +import org.dromara.common.mybatis.core.domain.BaseEntity; +import com.baomidou.mybatisplus.annotation.*; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.time.LocalDateTime; +import java.time.LocalTime; +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; + +import java.io.Serial; + +/** + * 排程详情对象 app_schedule_detail + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@TableName("app_schedule_detail") +public class AppScheduleDetail extends BaseEntity { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * + */ + @TableId(value = "id") + private Long id; + + /** + * 排程id + */ + private Long scheduleId; + + /** + * 周几 1-周一 2-周二 .... 7-周日 + */ + private Integer weekday; + + /** + * 开始时间 + */ + private LocalTime startTime; + + /** + * 持续时间(分钟) + */ + private Integer durationMin; + + /** + * 浇水区域 + */ + private Integer zones; + + /** + * 方式 0-排程 1-手动 + */ + private String triggerType; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/AppSchedulingDevice.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/AppSchedulingDevice.java new file mode 100644 index 0000000..8ba298c --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/AppSchedulingDevice.java @@ -0,0 +1,35 @@ +package org.dromara.app.domain; + +import org.dromara.common.mybatis.core.domain.BaseEntity; +import com.baomidou.mybatisplus.annotation.*; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.io.Serial; + +/** + * 排程与设备关联对象 app_scheduling_device + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@TableName("app_scheduling_device") +public class AppSchedulingDevice extends BaseEntity { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * 排程id + */ + private Long schedulingId; + + /** + * 设备id + */ + private Long deviceId; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/AppWateringLog.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/AppWateringLog.java new file mode 100644 index 0000000..fa13b08 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/AppWateringLog.java @@ -0,0 +1,78 @@ +package org.dromara.app.domain; + +import org.dromara.common.mybatis.core.domain.BaseEntity; +import com.baomidou.mybatisplus.annotation.*; +import lombok.Data; +import lombok.EqualsAndHashCode; +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; + +import java.io.Serial; + +/** + * 浇水记录对象 app_watering_log + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@TableName("app_watering_log") +public class AppWateringLog extends BaseEntity { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * + */ + @TableId(value = "id") + private Long id; + + /** + * 用户ID + */ + private Long userId; + + /** + * 设备ID + */ + private Long deviceId; + + /** + * 关联排程 + */ + private Long scheduleId; + + /** + * 开始时间 + */ + private Date startTime; + + /** + * 结束时间 + */ + private Date endTime; + + /** + * 持续时间 + */ + private String durationMin; + + /** + * 浇水区域 + */ + private String zones; + + /** + * 0-排程 1-手动 + */ + private String triggerType; + + /** + * 创建时间 + */ + private Date createdTime; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppDeviceBo.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppDeviceBo.java new file mode 100644 index 0000000..a389aa0 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppDeviceBo.java @@ -0,0 +1,104 @@ +package org.dromara.app.domain.bo; + +import org.dromara.app.domain.AppDevice; +import org.dromara.common.mybatis.core.domain.BaseEntity; +import org.dromara.common.core.validate.AddGroup; +import org.dromara.common.core.validate.EditGroup; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; +import lombok.EqualsAndHashCode; +import jakarta.validation.constraints.*; +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; + +/** + * 设备信息 +业务对象 app_device + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@AutoMapper(target = AppDevice.class, reverseConvertGenerate = false) +public class AppDeviceBo extends BaseEntity { + + /** + * + */ + @NotNull(message = "不能为空", groups = { EditGroup.class }) + private Long id; + + /** + * 设备编号 + */ + private String deviceNo; + + /** + * 用户id + */ + @NotNull(message = "用户id不能为空", groups = { AddGroup.class, EditGroup.class }) + private Long userId; + + /** + * 设备名称 + */ + private String deviceName; + + /** + * 设备图片 + */ + private String deviceImg; + + /** + * 状态 1-工作中 0-离线 2-待机 3-故障 + */ + private String status; + + /** + * 电量 + */ + private String powerLevel; + + /** + * 电量更新时间 + */ + private Date powerLevelUpdatatime; + + /** + * WiFi名称 + */ + private String wifiName; + + /** + * WiFi密码 + */ + private String wifiPassword; + + /** + * 设备型号 + */ + private String deviceEm; + + /** + * 设备序列号 + */ + private String deviceSn; + + /** + * 固件版本 + */ + private String fwVer; + + /** + * mac地址 + */ + private String macAddress; + + /** + * 到期时间 + */ + private Date expirationTime; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppScheduleBo.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppScheduleBo.java new file mode 100644 index 0000000..1dcee06 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppScheduleBo.java @@ -0,0 +1,79 @@ +package org.dromara.app.domain.bo; + +import org.dromara.app.domain.AppSchedule; +import org.dromara.app.domain.AppScheduleDetail; +import org.dromara.common.mybatis.core.domain.BaseEntity; +import org.dromara.common.core.validate.AddGroup; +import org.dromara.common.core.validate.EditGroup; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; +import lombok.EqualsAndHashCode; +import jakarta.validation.constraints.*; + +import java.time.LocalTime; +import java.util.Date; +import java.util.List; + +import com.fasterxml.jackson.annotation.JsonFormat; + +/** + * 日程排列业务对象 app_schedule + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@AutoMapper(target = AppSchedule.class, reverseConvertGenerate = false) +public class AppScheduleBo extends BaseEntity { + + /** + * + */ + @NotNull(message = "不能为空", groups = { EditGroup.class }) + private Long id; + + /** + * 用户id + */ + private Long userId; + + /** + * 排程名称 + */ + private String name; + + private List deviceIds; + + + /** + * 状态 0-关闭 1 开启 + */ + private String status; + + @NotEmpty(message = "至少需要配置一天") + private List details; + + // 内部类 + @Data + public static class AppScheduleDetail extends org.dromara.app.domain.AppScheduleDetail { + @NotNull(message = "星期不能为空") + @Min(1) @Max(7) + private Integer weekday; + + @NotNull(message = "开始时间不能为空") + private LocalTime startTime; + + @NotNull(message = "持续时间不能为空") + //@Min(1) @Max(120) + private Integer durationMin; + + //@NotNull(message = "浇水区域不能为空") + private Integer zones; // 位掩码 + + private String triggerType = "0"; + + } + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppScheduleDetailBo.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppScheduleDetailBo.java new file mode 100644 index 0000000..e95f2df --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppScheduleDetailBo.java @@ -0,0 +1,64 @@ +package org.dromara.app.domain.bo; + +import org.dromara.app.domain.AppScheduleDetail; +import org.dromara.common.mybatis.core.domain.BaseEntity; +import org.dromara.common.core.validate.AddGroup; +import org.dromara.common.core.validate.EditGroup; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; +import lombok.EqualsAndHashCode; +import jakarta.validation.constraints.*; + +import java.time.LocalTime; +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; + +/** + * 排程详情业务对象 app_schedule_detail + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@AutoMapper(target = AppScheduleDetail.class, reverseConvertGenerate = false) +public class AppScheduleDetailBo extends BaseEntity { + + /** + * + */ + @NotNull(message = "不能为空", groups = { EditGroup.class }) + private Long id; + + /** + * 排程id + */ + private Long scheduleId; + + /** + * 周几 1-周一 2-周二 .... 7-周日 + */ + private String weekday; + + /** + * 开始时间 + */ + private LocalTime startTime; + + /** + * 持续时间(分钟) + */ + private String durationMin; + + /** + * 浇水区域 + */ + private String zones; + + /** + * 方式 0-排程 1-手动 + */ + private String triggerType; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppSchedulingDeviceBo.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppSchedulingDeviceBo.java new file mode 100644 index 0000000..cf9c711 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppSchedulingDeviceBo.java @@ -0,0 +1,36 @@ +package org.dromara.app.domain.bo; + +import org.dromara.app.domain.AppSchedulingDevice; +import org.dromara.common.mybatis.core.domain.BaseEntity; +import org.dromara.common.core.validate.AddGroup; +import org.dromara.common.core.validate.EditGroup; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; +import lombok.EqualsAndHashCode; +import jakarta.validation.constraints.*; + +/** + * 排程与设备关联业务对象 app_scheduling_device + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@AutoMapper(target = AppSchedulingDevice.class, reverseConvertGenerate = false) +public class AppSchedulingDeviceBo extends BaseEntity { + + /** + * 排程id + */ + @NotNull(message = "排程id不能为空", groups = { AddGroup.class, EditGroup.class }) + private Long schedulingId; + + /** + * 设备id + */ + @NotNull(message = "设备id不能为空", groups = { AddGroup.class, EditGroup.class }) + private Long deviceId; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppWateringLogBo.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppWateringLogBo.java new file mode 100644 index 0000000..8e15b77 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/bo/AppWateringLogBo.java @@ -0,0 +1,77 @@ +package org.dromara.app.domain.bo; + +import org.dromara.app.domain.AppWateringLog; +import org.dromara.common.mybatis.core.domain.BaseEntity; +import org.dromara.common.core.validate.AddGroup; +import org.dromara.common.core.validate.EditGroup; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; +import lombok.EqualsAndHashCode; +import jakarta.validation.constraints.*; +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; + +/** + * 浇水记录业务对象 app_watering_log + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@AutoMapper(target = AppWateringLog.class, reverseConvertGenerate = false) +public class AppWateringLogBo extends BaseEntity { + + /** + * + */ + @NotNull(message = "不能为空", groups = { EditGroup.class }) + private Long id; + + /** + * 用户ID + */ + private Long userId; + + /** + * 设备ID + */ + private Long deviceId; + + /** + * 关联排程 + */ + private Long scheduleId; + + /** + * 开始时间 + */ + private Date startTime; + + /** + * 结束时间 + */ + private Date endTime; + + /** + * 持续时间 + */ + private String durationMin; + + /** + * 浇水区域 + */ + private String zones; + + /** + * 0-排程 1-手动 + */ + private String triggerType; + + /** + * 创建时间 + */ + private Date createdTime; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppDeviceVo.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppDeviceVo.java new file mode 100644 index 0000000..30621ea --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppDeviceVo.java @@ -0,0 +1,125 @@ +package org.dromara.app.domain.vo; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.dromara.app.domain.AppDevice; +import cn.idev.excel.annotation.ExcelIgnoreUnannotated; +import cn.idev.excel.annotation.ExcelProperty; +import org.dromara.common.excel.annotation.ExcelDictFormat; +import org.dromara.common.excel.convert.ExcelDictConvert; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; +import java.util.Date; + + + +/** + * 设备信息 +视图对象 app_device + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@ExcelIgnoreUnannotated +@AutoMapper(target = AppDevice.class) +public class AppDeviceVo implements Serializable { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * + */ + @ExcelProperty(value = "") + private Long id; + + /** + * 设备编号 + */ + @ExcelProperty(value = "设备编号") + private String deviceNo; + + /** + * 用户id + */ + @ExcelProperty(value = "用户id") + private Long userId; + + /** + * 设备名称 + */ + @ExcelProperty(value = "设备名称") + private String deviceName; + + /** + * 设备图片 + */ + @ExcelProperty(value = "设备图片") + private String deviceImg; + + /** + * 状态 1-工作中 0-离线 2-待机 3-故障 + */ + @ExcelProperty(value = "状态 1-工作中 0-离线 2-待机 3-故障") + private String status; + + /** + * 电量 + */ + @ExcelProperty(value = "电量") + private String powerLevel; + + /** + * 电量更新时间 + */ + @ExcelProperty(value = "电量更新时间") + private Date powerLevelUpdatatime; + + /** + * WiFi名称 + */ + @ExcelProperty(value = "WiFi名称") + private String wifiName; + + /** + * WiFi密码 + */ + @ExcelProperty(value = "WiFi密码") + private String wifiPassword; + + /** + * 设备型号 + */ + @ExcelProperty(value = "设备型号") + private String deviceEm; + + /** + * 设备序列号 + */ + @ExcelProperty(value = "设备序列号") + private String deviceSn; + + /** + * 固件版本 + */ + @ExcelProperty(value = "固件版本") + private String fwVer; + + /** + * mac地址 + */ + @ExcelProperty(value = "mac地址") + private String macAddress; + + /** + * 到期时间 + */ + @ExcelProperty(value = "到期时间") + private Date expirationTime; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppScheduleDetailVo.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppScheduleDetailVo.java new file mode 100644 index 0000000..1d365f9 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppScheduleDetailVo.java @@ -0,0 +1,77 @@ +package org.dromara.app.domain.vo; + +import java.time.LocalTime; +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.dromara.app.domain.AppScheduleDetail; +import cn.idev.excel.annotation.ExcelIgnoreUnannotated; +import cn.idev.excel.annotation.ExcelProperty; +import org.dromara.common.excel.annotation.ExcelDictFormat; +import org.dromara.common.excel.convert.ExcelDictConvert; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; +import java.util.Date; + + + +/** + * 排程详情视图对象 app_schedule_detail + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@ExcelIgnoreUnannotated +@AutoMapper(target = AppScheduleDetail.class) +public class AppScheduleDetailVo implements Serializable { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * + */ + @ExcelProperty(value = "") + private Long id; + + /** + * 排程id + */ + @ExcelProperty(value = "排程id") + private Long scheduleId; + + /** + * 周几 1-周一 2-周二 .... 7-周日 + */ + @ExcelProperty(value = "周几 1-周一 2-周二 .... 7-周日") + private Integer weekday; + + /** + * 开始时间 + */ + @ExcelProperty(value = "开始时间") + private LocalTime startTime; + + /** + * 持续时间(分钟) + */ + @ExcelProperty(value = "持续时间(分钟)") + private Integer durationMin; + + /** + * 浇水区域 + */ + @ExcelProperty(value = "浇水区域") + private String zones; + + /** + * 方式 0-排程 1-手动 + */ + @ExcelProperty(value = "方式 0-排程 1-手动 ") + private String triggerType; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppScheduleVo.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppScheduleVo.java new file mode 100644 index 0000000..2f0c1e8 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppScheduleVo.java @@ -0,0 +1,67 @@ +package org.dromara.app.domain.vo; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import jakarta.validation.constraints.NotEmpty; +import org.dromara.app.domain.AppSchedule; +import cn.idev.excel.annotation.ExcelIgnoreUnannotated; +import cn.idev.excel.annotation.ExcelProperty; +import org.dromara.app.domain.bo.AppScheduleBo; +import org.dromara.common.excel.annotation.ExcelDictFormat; +import org.dromara.common.excel.convert.ExcelDictConvert; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; +import java.util.Date; +import java.util.List; + + +/** + * 日程排列视图对象 app_schedule + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@ExcelIgnoreUnannotated +@AutoMapper(target = AppSchedule.class) +public class AppScheduleVo implements Serializable { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * + */ + @ExcelProperty(value = "") + private Long id; + + /** + * 设备id + */ + @ExcelProperty(value = "用户id") + private Long userId; + + /** + * 排程名称 + */ + @ExcelProperty(value = "排程名称") + private String name; + + /** + * 设备ids + */ + private List deviceIds; + /** + * 状态 0-关闭 1 开启 + */ + @ExcelProperty(value = "状态 0-关闭 1 开启") + private String status; + + @NotEmpty(message = "至少需要配置一天") + private List details; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppSchedulingDeviceVo.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppSchedulingDeviceVo.java new file mode 100644 index 0000000..0f3cd50 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppSchedulingDeviceVo.java @@ -0,0 +1,44 @@ +package org.dromara.app.domain.vo; + +import org.dromara.app.domain.AppSchedulingDevice; +import cn.idev.excel.annotation.ExcelIgnoreUnannotated; +import cn.idev.excel.annotation.ExcelProperty; +import org.dromara.common.excel.annotation.ExcelDictFormat; +import org.dromara.common.excel.convert.ExcelDictConvert; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; +import java.util.Date; + + + +/** + * 排程与设备关联视图对象 app_scheduling_device + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@ExcelIgnoreUnannotated +@AutoMapper(target = AppSchedulingDevice.class) +public class AppSchedulingDeviceVo implements Serializable { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * 排程id + */ + @ExcelProperty(value = "排程id") + private Long schedulingId; + + /** + * 设备id + */ + @ExcelProperty(value = "设备id") + private Long deviceId; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppWateringLogVo.java b/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppWateringLogVo.java new file mode 100644 index 0000000..e92f289 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/domain/vo/AppWateringLogVo.java @@ -0,0 +1,94 @@ +package org.dromara.app.domain.vo; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.dromara.app.domain.AppWateringLog; +import cn.idev.excel.annotation.ExcelIgnoreUnannotated; +import cn.idev.excel.annotation.ExcelProperty; +import org.dromara.common.excel.annotation.ExcelDictFormat; +import org.dromara.common.excel.convert.ExcelDictConvert; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; +import java.util.Date; + + + +/** + * 浇水记录视图对象 app_watering_log + * + * @author Lion Li + * @date 2026-04-25 + */ +@Data +@ExcelIgnoreUnannotated +@AutoMapper(target = AppWateringLog.class) +public class AppWateringLogVo implements Serializable { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * + */ + @ExcelProperty(value = "") + private Long id; + + /** + * 用户ID + */ + @ExcelProperty(value = "用户ID") + private Long userId; + + /** + * 设备ID + */ + @ExcelProperty(value = "设备ID") + private Long deviceId; + + /** + * 关联排程 + */ + @ExcelProperty(value = "关联排程") + private Long scheduleId; + + /** + * 开始时间 + */ + @ExcelProperty(value = "开始时间") + private Date startTime; + + /** + * 结束时间 + */ + @ExcelProperty(value = "结束时间") + private Date endTime; + + /** + * 持续时间 + */ + @ExcelProperty(value = "持续时间") + private String durationMin; + + /** + * 浇水区域 + */ + @ExcelProperty(value = "浇水区域") + private String zones; + + /** + * 0-排程 1-手动 + */ + @ExcelProperty(value = "0-排程 1-手动") + private String triggerType; + + /** + * 创建时间 + */ + @ExcelProperty(value = "创建时间") + private Date createdTime; + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppDeviceMapper.java b/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppDeviceMapper.java new file mode 100644 index 0000000..3aa9c91 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppDeviceMapper.java @@ -0,0 +1,18 @@ +package org.dromara.app.mapper; + +import org.dromara.app.domain.AppDevice; +import org.dromara.app.domain.vo.AppDeviceVo; +import org.dromara.common.mybatis.annotation.DataColumn; +import org.dromara.common.mybatis.annotation.DataPermission; +import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; + +/** + * 设备信息 +Mapper接口 + * + * @author Lion Li + * @date 2026-04-25 + */ +public interface AppDeviceMapper extends BaseMapperPlus { + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppScheduleDetailMapper.java b/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppScheduleDetailMapper.java new file mode 100644 index 0000000..2f4c6e4 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppScheduleDetailMapper.java @@ -0,0 +1,15 @@ +package org.dromara.app.mapper; + +import org.dromara.app.domain.AppScheduleDetail; +import org.dromara.app.domain.vo.AppScheduleDetailVo; +import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; + +/** + * 排程详情Mapper接口 + * + * @author Lion Li + * @date 2026-04-25 + */ +public interface AppScheduleDetailMapper extends BaseMapperPlus { + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppScheduleMapper.java b/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppScheduleMapper.java new file mode 100644 index 0000000..8a690e3 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppScheduleMapper.java @@ -0,0 +1,15 @@ +package org.dromara.app.mapper; + +import org.dromara.app.domain.AppSchedule; +import org.dromara.app.domain.vo.AppScheduleVo; +import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; + +/** + * 日程排列Mapper接口 + * + * @author Lion Li + * @date 2026-04-25 + */ +public interface AppScheduleMapper extends BaseMapperPlus { + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppSchedulingDeviceMapper.java b/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppSchedulingDeviceMapper.java new file mode 100644 index 0000000..e5d5ebb --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppSchedulingDeviceMapper.java @@ -0,0 +1,15 @@ +package org.dromara.app.mapper; + +import org.dromara.app.domain.AppSchedulingDevice; +import org.dromara.app.domain.vo.AppSchedulingDeviceVo; +import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; + +/** + * 排程与设备关联Mapper接口 + * + * @author Lion Li + * @date 2026-04-25 + */ +public interface AppSchedulingDeviceMapper extends BaseMapperPlus { + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppWateringLogMapper.java b/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppWateringLogMapper.java new file mode 100644 index 0000000..40a2371 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/mapper/AppWateringLogMapper.java @@ -0,0 +1,15 @@ +package org.dromara.app.mapper; + +import org.dromara.app.domain.AppWateringLog; +import org.dromara.app.domain.vo.AppWateringLogVo; +import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; + +/** + * 浇水记录Mapper接口 + * + * @author Lion Li + * @date 2026-04-25 + */ +public interface AppWateringLogMapper extends BaseMapperPlus { + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/service/IAppDeviceService.java b/water-modules/water-app/src/main/java/org/dromara/app/service/IAppDeviceService.java new file mode 100644 index 0000000..971c974 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/service/IAppDeviceService.java @@ -0,0 +1,82 @@ +package org.dromara.app.service; + +import org.dromara.app.domain.vo.AppDeviceVo; +import org.dromara.app.domain.bo.AppDeviceBo; +import org.dromara.common.mybatis.annotation.DataColumn; +import org.dromara.common.mybatis.annotation.DataPermission; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; + +import java.util.Collection; +import java.util.List; + +/** + * 设备信息 +Service接口 + * + * @author Lion Li + * @date 2026-04-25 + */ +public interface IAppDeviceService { + + /** + * 查询设备信息 + + * + * @param id 主键 + * @return 设备信息 + + */ + AppDeviceVo queryById(Long id); + + /** + * 分页查询设备信息 +列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 设备信息 +分页列表 + */ + TableDataInfo queryPageList(AppDeviceBo bo, PageQuery pageQuery); + + /** + * 查询符合条件的设备信息 +列表 + * + * @param bo 查询条件 + * @return 设备信息 +列表 + */ + List queryList(AppDeviceBo bo); + + /** + * 新增设备信息 + + * + * @param bo 设备信息 + + * @return 是否新增成功 + */ + Boolean insertByBo(AppDeviceBo bo); + + /** + * 修改设备信息 + + * + * @param bo 设备信息 + + * @return 是否修改成功 + */ + Boolean updateByBo(AppDeviceBo bo); + + /** + * 校验并批量删除设备信息 +信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + Boolean deleteWithValidByIds(Collection ids, Boolean isValid); +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/service/IAppScheduleDetailService.java b/water-modules/water-app/src/main/java/org/dromara/app/service/IAppScheduleDetailService.java new file mode 100644 index 0000000..1fe0949 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/service/IAppScheduleDetailService.java @@ -0,0 +1,70 @@ +package org.dromara.app.service; + +import org.dromara.app.domain.vo.AppScheduleDetailVo; +import org.dromara.app.domain.bo.AppScheduleDetailBo; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; + +import java.util.Collection; +import java.util.List; + +/** + * 排程详情Service接口 + * + * @author Lion Li + * @date 2026-04-25 + */ +public interface IAppScheduleDetailService { + + /** + * 查询排程详情 + * + * @param id 主键 + * @return 排程详情 + */ + AppScheduleDetailVo queryById(Long id); + + /** + * 分页查询排程详情列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 排程详情分页列表 + */ + TableDataInfo queryPageList(AppScheduleDetailBo bo, PageQuery pageQuery); + + /** + * 查询符合条件的排程详情列表 + * + * @param bo 查询条件 + * @return 排程详情列表 + */ + List queryList(AppScheduleDetailBo bo); + + /** + * 新增排程详情 + * + * @param bo 排程详情 + * @return 是否新增成功 + */ + Boolean insertByBo(AppScheduleDetailBo bo); + + /** + * 修改排程详情 + * + * @param bo 排程详情 + * @return 是否修改成功 + */ + Boolean updateByBo(AppScheduleDetailBo bo); + + /** + * 校验并批量删除排程详情信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + Boolean deleteWithValidByIds(Collection ids, Boolean isValid); + + List queryByScheduleId(Long id); +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/service/IAppScheduleService.java b/water-modules/water-app/src/main/java/org/dromara/app/service/IAppScheduleService.java new file mode 100644 index 0000000..1845e38 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/service/IAppScheduleService.java @@ -0,0 +1,68 @@ +package org.dromara.app.service; + +import org.dromara.app.domain.vo.AppScheduleVo; +import org.dromara.app.domain.bo.AppScheduleBo; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; + +import java.util.Collection; +import java.util.List; + +/** + * 日程排列Service接口 + * + * @author Lion Li + * @date 2026-04-25 + */ +public interface IAppScheduleService { + + /** + * 查询日程排列 + * + * @param id 主键 + * @return 日程排列 + */ + AppScheduleVo queryById(Long id); + + /** + * 分页查询日程排列列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 日程排列分页列表 + */ + TableDataInfo queryPageList(AppScheduleBo bo, PageQuery pageQuery); + + /** + * 查询符合条件的日程排列列表 + * + * @param bo 查询条件 + * @return 日程排列列表 + */ + List queryList(AppScheduleBo bo); + + /** + * 新增日程排列 + * + * @param bo 日程排列 + * @return 是否新增成功 + */ + Boolean insertByBo(AppScheduleBo bo); + + /** + * 修改日程排列 + * + * @param bo 日程排列 + * @return 是否修改成功 + */ + List updateByBo(AppScheduleBo bo); + + /** + * 校验并批量删除日程排列信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + Boolean deleteWithValidByIds(Collection ids, Boolean isValid); +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/service/IAppSchedulingDeviceService.java b/water-modules/water-app/src/main/java/org/dromara/app/service/IAppSchedulingDeviceService.java new file mode 100644 index 0000000..dfd59e0 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/service/IAppSchedulingDeviceService.java @@ -0,0 +1,68 @@ +package org.dromara.app.service; + +import org.dromara.app.domain.vo.AppSchedulingDeviceVo; +import org.dromara.app.domain.bo.AppSchedulingDeviceBo; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; + +import java.util.Collection; +import java.util.List; + +/** + * 排程与设备关联Service接口 + * + * @author Lion Li + * @date 2026-04-25 + */ +public interface IAppSchedulingDeviceService { + + /** + * 查询排程与设备关联 + * + * @param schedulingId 主键 + * @return 排程与设备关联 + */ + AppSchedulingDeviceVo queryById(Long schedulingId); + + /** + * 分页查询排程与设备关联列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 排程与设备关联分页列表 + */ + TableDataInfo queryPageList(AppSchedulingDeviceBo bo, PageQuery pageQuery); + + /** + * 查询符合条件的排程与设备关联列表 + * + * @param bo 查询条件 + * @return 排程与设备关联列表 + */ + List queryList(AppSchedulingDeviceBo bo); + + /** + * 新增排程与设备关联 + * + * @param bo 排程与设备关联 + * @return 是否新增成功 + */ + Boolean insertByBo(AppSchedulingDeviceBo bo); + + /** + * 修改排程与设备关联 + * + * @param bo 排程与设备关联 + * @return 是否修改成功 + */ + Boolean updateByBo(AppSchedulingDeviceBo bo); + + /** + * 校验并批量删除排程与设备关联信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + Boolean deleteWithValidByIds(Collection ids, Boolean isValid); +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/service/IAppWateringLogService.java b/water-modules/water-app/src/main/java/org/dromara/app/service/IAppWateringLogService.java new file mode 100644 index 0000000..915b0ae --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/service/IAppWateringLogService.java @@ -0,0 +1,68 @@ +package org.dromara.app.service; + +import org.dromara.app.domain.vo.AppWateringLogVo; +import org.dromara.app.domain.bo.AppWateringLogBo; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; + +import java.util.Collection; +import java.util.List; + +/** + * 浇水记录Service接口 + * + * @author Lion Li + * @date 2026-04-25 + */ +public interface IAppWateringLogService { + + /** + * 查询浇水记录 + * + * @param id 主键 + * @return 浇水记录 + */ + AppWateringLogVo queryById(Long id); + + /** + * 分页查询浇水记录列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 浇水记录分页列表 + */ + TableDataInfo queryPageList(AppWateringLogBo bo, PageQuery pageQuery); + + /** + * 查询符合条件的浇水记录列表 + * + * @param bo 查询条件 + * @return 浇水记录列表 + */ + List queryList(AppWateringLogBo bo); + + /** + * 新增浇水记录 + * + * @param bo 浇水记录 + * @return 是否新增成功 + */ + Boolean insertByBo(AppWateringLogBo bo); + + /** + * 修改浇水记录 + * + * @param bo 浇水记录 + * @return 是否修改成功 + */ + Boolean updateByBo(AppWateringLogBo bo); + + /** + * 校验并批量删除浇水记录信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + Boolean deleteWithValidByIds(Collection ids, Boolean isValid); +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppDeviceServiceImpl.java b/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppDeviceServiceImpl.java new file mode 100644 index 0000000..0303de4 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppDeviceServiceImpl.java @@ -0,0 +1,159 @@ +package org.dromara.app.service.impl; + +import org.dromara.common.core.utils.MapstructUtils; +import org.dromara.common.core.utils.StringUtils; +import org.dromara.common.mybatis.annotation.DataColumn; +import org.dromara.common.mybatis.annotation.DataPermission; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; +import org.dromara.app.domain.bo.AppDeviceBo; +import org.dromara.app.domain.vo.AppDeviceVo; +import org.dromara.app.domain.AppDevice; +import org.dromara.app.mapper.AppDeviceMapper; +import org.dromara.app.service.IAppDeviceService; + +import java.util.List; +import java.util.Map; +import java.util.Collection; + +/** + * 设备信息 +Service业务层处理 + * + * @author Lion Li + * @date 2026-04-25 + */ +@Slf4j +@RequiredArgsConstructor +@Service +public class AppDeviceServiceImpl implements IAppDeviceService { + + private final AppDeviceMapper baseMapper; + + /** + * 查询设备信息 + + * + * @param id 主键 + * @return 设备信息 + + */ + @Override + public AppDeviceVo queryById(Long id){ + return baseMapper.selectVoById(id); + } + + /** + * 分页查询设备信息 +列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 设备信息 +分页列表 + */ + @Override + public TableDataInfo queryPageList(AppDeviceBo bo, PageQuery pageQuery) { + LambdaQueryWrapper lqw = buildQueryWrapper(bo); + Page result = baseMapper.selectVoPage(pageQuery.build(), lqw); + return TableDataInfo.build(result); + } + + /** + * 查询符合条件的设备信息 +列表 + * + * @param bo 查询条件 + * @return 设备信息 +列表 + */ + @Override + public List queryList(AppDeviceBo bo) { + LambdaQueryWrapper lqw = buildQueryWrapper(bo); + return baseMapper.selectVoList(lqw); + } + + private LambdaQueryWrapper buildQueryWrapper(AppDeviceBo bo) { + Map params = bo.getParams(); + LambdaQueryWrapper lqw = Wrappers.lambdaQuery(); + lqw.orderByAsc(AppDevice::getId); + lqw.eq(StringUtils.isNotBlank(bo.getDeviceNo()), AppDevice::getDeviceNo, bo.getDeviceNo()); + lqw.eq(bo.getUserId() != null, AppDevice::getUserId, bo.getUserId()); + lqw.like(StringUtils.isNotBlank(bo.getDeviceName()), AppDevice::getDeviceName, bo.getDeviceName()); + lqw.eq(StringUtils.isNotBlank(bo.getDeviceImg()), AppDevice::getDeviceImg, bo.getDeviceImg()); + lqw.eq(StringUtils.isNotBlank(bo.getStatus()), AppDevice::getStatus, bo.getStatus()); + lqw.eq(StringUtils.isNotBlank(bo.getPowerLevel()), AppDevice::getPowerLevel, bo.getPowerLevel()); + lqw.eq(bo.getPowerLevelUpdatatime() != null, AppDevice::getPowerLevelUpdatatime, bo.getPowerLevelUpdatatime()); + lqw.like(StringUtils.isNotBlank(bo.getWifiName()), AppDevice::getWifiName, bo.getWifiName()); + lqw.eq(StringUtils.isNotBlank(bo.getWifiPassword()), AppDevice::getWifiPassword, bo.getWifiPassword()); + lqw.eq(StringUtils.isNotBlank(bo.getDeviceEm()), AppDevice::getDeviceEm, bo.getDeviceEm()); + lqw.eq(StringUtils.isNotBlank(bo.getDeviceSn()), AppDevice::getDeviceSn, bo.getDeviceSn()); + lqw.eq(StringUtils.isNotBlank(bo.getFwVer()), AppDevice::getFwVer, bo.getFwVer()); + lqw.eq(StringUtils.isNotBlank(bo.getMacAddress()), AppDevice::getMacAddress, bo.getMacAddress()); + lqw.eq(bo.getExpirationTime() != null, AppDevice::getExpirationTime, bo.getExpirationTime()); + return lqw; + } + + /** + * 新增设备信息 + + * + * @param bo 设备信息 + + * @return 是否新增成功 + */ + @Override + public Boolean insertByBo(AppDeviceBo bo) { + AppDevice add = MapstructUtils.convert(bo, AppDevice.class); + validEntityBeforeSave(add); + boolean flag = baseMapper.insert(add) > 0; + if (flag) { + bo.setId(add.getId()); + } + return flag; + } + + /** + * 修改设备信息 + + * + * @param bo 设备信息 + + * @return 是否修改成功 + */ + @Override + public Boolean updateByBo(AppDeviceBo bo) { + AppDevice update = MapstructUtils.convert(bo, AppDevice.class); + validEntityBeforeSave(update); + return baseMapper.updateById(update) > 0; + } + + /** + * 保存前的数据校验 + */ + private void validEntityBeforeSave(AppDevice entity){ + //TODO 做一些数据校验,如唯一约束 + } + + /** + * 校验并批量删除设备信息 +信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + @Override + public Boolean deleteWithValidByIds(Collection ids, Boolean isValid) { + if(isValid){ + //TODO 做一些业务上的校验,判断是否需要校验 + } + return baseMapper.deleteByIds(ids) > 0; + } +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppScheduleDetailServiceImpl.java b/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppScheduleDetailServiceImpl.java new file mode 100644 index 0000000..b8ffecc --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppScheduleDetailServiceImpl.java @@ -0,0 +1,142 @@ +package org.dromara.app.service.impl; + +import org.dromara.common.core.utils.MapstructUtils; +import org.dromara.common.core.utils.StringUtils; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; +import org.dromara.app.domain.bo.AppScheduleDetailBo; +import org.dromara.app.domain.vo.AppScheduleDetailVo; +import org.dromara.app.domain.AppScheduleDetail; +import org.dromara.app.mapper.AppScheduleDetailMapper; +import org.dromara.app.service.IAppScheduleDetailService; + +import java.util.List; +import java.util.Map; +import java.util.Collection; + +/** + * 排程详情Service业务层处理 + * + * @author Lion Li + * @date 2026-04-25 + */ +@Slf4j +@RequiredArgsConstructor +@Service +public class AppScheduleDetailServiceImpl implements IAppScheduleDetailService { + + private final AppScheduleDetailMapper baseMapper; + + /** + * 查询排程详情 + * + * @param id 主键 + * @return 排程详情 + */ + @Override + public AppScheduleDetailVo queryById(Long id){ + return baseMapper.selectVoById(id); + } + + /** + * 分页查询排程详情列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 排程详情分页列表 + */ + @Override + public TableDataInfo queryPageList(AppScheduleDetailBo bo, PageQuery pageQuery) { + LambdaQueryWrapper lqw = buildQueryWrapper(bo); + Page result = baseMapper.selectVoPage(pageQuery.build(), lqw); + return TableDataInfo.build(result); + } + + /** + * 查询符合条件的排程详情列表 + * + * @param bo 查询条件 + * @return 排程详情列表 + */ + @Override + public List queryList(AppScheduleDetailBo bo) { + LambdaQueryWrapper lqw = buildQueryWrapper(bo); + return baseMapper.selectVoList(lqw); + } + + private LambdaQueryWrapper buildQueryWrapper(AppScheduleDetailBo bo) { + Map params = bo.getParams(); + LambdaQueryWrapper lqw = Wrappers.lambdaQuery(); + lqw.orderByAsc(AppScheduleDetail::getId); + lqw.eq(bo.getScheduleId() != null, AppScheduleDetail::getScheduleId, bo.getScheduleId()); + lqw.eq(StringUtils.isNotBlank(bo.getWeekday()), AppScheduleDetail::getWeekday, bo.getWeekday()); + lqw.eq(bo.getStartTime() != null, AppScheduleDetail::getStartTime, bo.getStartTime()); + lqw.eq(StringUtils.isNotBlank(bo.getDurationMin()), AppScheduleDetail::getDurationMin, bo.getDurationMin()); + lqw.eq(StringUtils.isNotBlank(bo.getZones()), AppScheduleDetail::getZones, bo.getZones()); + lqw.eq(StringUtils.isNotBlank(bo.getTriggerType()), AppScheduleDetail::getTriggerType, bo.getTriggerType()); + return lqw; + } + + /** + * 新增排程详情 + * + * @param bo 排程详情 + * @return 是否新增成功 + */ + @Override + public Boolean insertByBo(AppScheduleDetailBo bo) { + AppScheduleDetail add = MapstructUtils.convert(bo, AppScheduleDetail.class); + validEntityBeforeSave(add); + boolean flag = baseMapper.insert(add) > 0; + if (flag) { + bo.setId(add.getId()); + } + return flag; + } + + /** + * 修改排程详情 + * + * @param bo 排程详情 + * @return 是否修改成功 + */ + @Override + public Boolean updateByBo(AppScheduleDetailBo bo) { + AppScheduleDetail update = MapstructUtils.convert(bo, AppScheduleDetail.class); + validEntityBeforeSave(update); + return baseMapper.updateById(update) > 0; + } + + /** + * 保存前的数据校验 + */ + private void validEntityBeforeSave(AppScheduleDetail entity){ + //TODO 做一些数据校验,如唯一约束 + } + + /** + * 校验并批量删除排程详情信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + @Override + public Boolean deleteWithValidByIds(Collection ids, Boolean isValid) { + if(isValid){ + //TODO 做一些业务上的校验,判断是否需要校验 + } + return baseMapper.deleteByIds(ids) > 0; + } + + @Override + public List queryByScheduleId(Long id) { + return List.of(); + } +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppScheduleServiceImpl.java b/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppScheduleServiceImpl.java new file mode 100644 index 0000000..ffd03f8 --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppScheduleServiceImpl.java @@ -0,0 +1,244 @@ +package org.dromara.app.service.impl; + +import cn.hutool.core.util.ObjectUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import org.dromara.app.domain.AppSchedulingDevice; +import org.dromara.app.mapper.AppScheduleDetailMapper; +import org.dromara.app.mapper.AppSchedulingDeviceMapper; +import org.dromara.common.core.utils.MapstructUtils; +import org.dromara.common.core.utils.StringUtils; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; +import org.dromara.app.domain.bo.AppScheduleBo; +import org.dromara.app.domain.vo.AppScheduleVo; +import org.dromara.app.domain.AppScheduleDetail; +import org.dromara.app.domain.AppSchedule; +import org.dromara.app.mapper.AppScheduleMapper; +import org.dromara.app.service.IAppScheduleService; +import org.springframework.transaction.annotation.Transactional; + +import java.time.LocalTime; +import java.util.*; + +/** + * 日程排列Service业务层处理 + * + * @author Lion Li + * @date 2026-04-25 + */ +@Slf4j +@RequiredArgsConstructor +@Service +public class AppScheduleServiceImpl implements IAppScheduleService { + + private final AppScheduleMapper baseMapper; + private final AppScheduleDetailMapper scheduleDetailMapper; + private final AppSchedulingDeviceMapper schedulingDeviceMapper; + + /** + * 查询日程排列 + * + * @param id 主键 + * @return 日程排列 + */ + @Override + public AppScheduleVo queryById(Long id){ + return baseMapper.selectVoById(id); + } + + /** + * 分页查询日程排列列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 日程排列分页列表 + */ + @Override + public TableDataInfo queryPageList(AppScheduleBo bo, PageQuery pageQuery) { + LambdaQueryWrapper lqw = buildQueryWrapper(bo); + Page result = baseMapper.selectVoPage(pageQuery.build(), lqw); + return TableDataInfo.build(result); + } + + /** + * 查询符合条件的日程排列列表 + * + * @param bo 查询条件 + * @return 日程排列列表 + */ + @Override + public List queryList(AppScheduleBo bo) { + LambdaQueryWrapper lqw = buildQueryWrapper(bo); + return baseMapper.selectVoList(lqw); + } + + private LambdaQueryWrapper buildQueryWrapper(AppScheduleBo bo) { + Map params = bo.getParams(); + LambdaQueryWrapper lqw = Wrappers.lambdaQuery(); + lqw.orderByAsc(AppSchedule::getId); + lqw.like(StringUtils.isNotBlank(bo.getName()), AppSchedule::getName, bo.getName()); + lqw.eq(StringUtils.isNotBlank(bo.getStatus()), AppSchedule::getStatus, bo.getStatus()); + return lqw; + } + + /** + * 新增日程排列 + * + * @param bo 日程排列 + * @return 是否新增成功 + */ + @Override + @Transactional + public Boolean insertByBo(AppScheduleBo bo) { + AppSchedule add = MapstructUtils.convert(bo, AppSchedule.class); + + validEntityBeforeSave(add); + //创建排程 + boolean flag = baseMapper.insert(add) > 0; + //创建详情 + for (AppScheduleBo.AppScheduleDetail item:bo.getDetails()){ + AppScheduleDetail detail = new AppScheduleDetail(); + detail.setWeekday(item.getWeekday()); + detail.setStartTime(item.getStartTime()); + detail.setDurationMin(item.getDurationMin()); + detail.setZones(item.getZones()); + detail.setTriggerType(item.getTriggerType()); + scheduleDetailMapper.insert(detail); + } + //绑定设备 + for (Long deviceId:bo.getDeviceIds()){ + //查询设备日程冲突 + List list = checkConflict(deviceId, bo); + if (list.size()!=0){ + return false; + } + //没冲突设备绑定日程 + AppSchedulingDevice appSchedulingDevice = new AppSchedulingDevice(); + appSchedulingDevice.setDeviceId(deviceId); + appSchedulingDevice.setSchedulingId(add.getId()); + appSchedulingDevice.setCreateTime(new Date()); + schedulingDeviceMapper.insert(appSchedulingDevice); + } + return flag; + } + + /** + * 修改日程排列 + * + * @param bo 日程排列 + * @return 是否修改成功 + */ + @Override + public List updateByBo(AppScheduleBo bo) { + AppSchedule update = MapstructUtils.convert(bo, AppSchedule.class); + validEntityBeforeSave(update); + + + //修改详情 + for (AppScheduleBo.AppScheduleDetail item:bo.getDetails()){ + AppScheduleDetail detail = new AppScheduleDetail(); + detail.setWeekday(item.getWeekday()); + detail.setStartTime(item.getStartTime()); + detail.setDurationMin(item.getDurationMin()); + detail.setZones(item.getZones()); + detail.setTriggerType(item.getTriggerType()); + scheduleDetailMapper.updateById(detail); + } + //绑定设备 + for (Long deviceId:bo.getDeviceIds()){ + //查询设备日程冲突 + List list = checkConflict(deviceId, bo); + if (list.size()!=0){ + //有冲突 + return list; + } + //没冲突设备绑定日程 + AppSchedulingDevice appSchedulingDevice = new AppSchedulingDevice(); + appSchedulingDevice.setDeviceId(deviceId); + appSchedulingDevice.setSchedulingId(bo.getId()); + appSchedulingDevice.setCreateTime(new Date()); + } + return new ArrayList(); + } + + /** + * 保存前的数据校验 + */ + private void validEntityBeforeSave(AppSchedule entity){ + //TODO 做一些数据校验,如唯一约束 + } + + /** + * 校验并批量删除日程排列信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + @Override + public Boolean deleteWithValidByIds(Collection ids, Boolean isValid) { + if(isValid){ + //TODO 做一些业务上的校验,判断是否需要校验 + } + return baseMapper.deleteByIds(ids) > 0; + } + + /** + * 检查新日程与设备已绑定日程是否存在时间冲突 + */ + public List checkConflict(Long deviceId, AppScheduleBo newSchedule) { + // 1. 获取该设备所有已绑定的日程 + List existingBindings = schedulingDeviceMapper.selectList(new QueryWrapper().eq("device_id", deviceId)); + + List conflicts = new ArrayList<>(); + + // 2. 对新日程的每一天,与已存在的每一天逐一比较 + for (AppScheduleDetail newDay : newSchedule.getDetails()) { + //关闭的排程直接跳出 + if ("0".equals(newSchedule.getStatus())) break; + //此设备日程 + for (AppSchedulingDevice existing : existingBindings){ + AppScheduleVo appScheduleVo = baseMapper.selectVoById(existing.getSchedulingId()); + if (ObjectUtil.isNotNull(appScheduleVo) && !"0".equals(appScheduleVo.getStatus())){ + List details = scheduleDetailMapper.selectList(new QueryWrapper().eq("scheduling_id", existing.getSchedulingId())); + + for (AppScheduleDetail existingDay:details ){ + + // 3. 同一天才检查时间重叠 + if (newDay.getWeekday() == existingDay.getWeekday()) { + if (timeOverlap(newDay, existingDay)) { + + Map map = new HashMap(); + map.put("scheduleName", appScheduleVo.getName()); + map.put("newDay", newDay); + map.put("existingDay", existingDay); + conflicts.add(map); + } + } + } + } + } + } + + return conflicts; // 空列表 = 无冲突 + } + /** + * 判断两段时间是否重叠 + * 重叠条件:start1 < end2 && start2 < end1 + */ + public boolean timeOverlap(AppScheduleDetail a, AppScheduleDetail b) { + LocalTime bendTime = b.getStartTime().plusMinutes(b.getDurationMin()); + LocalTime aendTime = a.getStartTime().plusMinutes(a.getDurationMin()); + + return a.getStartTime().isBefore(bendTime) + && b.getStartTime().isBefore(aendTime); + } + + +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppSchedulingDeviceServiceImpl.java b/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppSchedulingDeviceServiceImpl.java new file mode 100644 index 0000000..5d230df --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppSchedulingDeviceServiceImpl.java @@ -0,0 +1,132 @@ +package org.dromara.app.service.impl; + +import org.dromara.common.core.utils.MapstructUtils; +import org.dromara.common.core.utils.StringUtils; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; +import org.dromara.app.domain.bo.AppSchedulingDeviceBo; +import org.dromara.app.domain.vo.AppSchedulingDeviceVo; +import org.dromara.app.domain.AppSchedulingDevice; +import org.dromara.app.mapper.AppSchedulingDeviceMapper; +import org.dromara.app.service.IAppSchedulingDeviceService; + +import java.util.List; +import java.util.Map; +import java.util.Collection; + +/** + * 排程与设备关联Service业务层处理 + * + * @author Lion Li + * @date 2026-04-25 + */ +@Slf4j +@RequiredArgsConstructor +@Service +public class AppSchedulingDeviceServiceImpl implements IAppSchedulingDeviceService { + + private final AppSchedulingDeviceMapper baseMapper; + + /** + * 查询排程与设备关联 + * + * @param schedulingId 主键 + * @return 排程与设备关联 + */ + @Override + public AppSchedulingDeviceVo queryById(Long schedulingId){ + return baseMapper.selectVoById(schedulingId); + } + + /** + * 分页查询排程与设备关联列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 排程与设备关联分页列表 + */ + @Override + public TableDataInfo queryPageList(AppSchedulingDeviceBo bo, PageQuery pageQuery) { + LambdaQueryWrapper lqw = buildQueryWrapper(bo); + Page result = baseMapper.selectVoPage(pageQuery.build(), lqw); + return TableDataInfo.build(result); + } + + /** + * 查询符合条件的排程与设备关联列表 + * + * @param bo 查询条件 + * @return 排程与设备关联列表 + */ + @Override + public List queryList(AppSchedulingDeviceBo bo) { + LambdaQueryWrapper lqw = buildQueryWrapper(bo); + return baseMapper.selectVoList(lqw); + } + + private LambdaQueryWrapper buildQueryWrapper(AppSchedulingDeviceBo bo) { + Map params = bo.getParams(); + LambdaQueryWrapper lqw = Wrappers.lambdaQuery(); + lqw.eq(bo.getSchedulingId() != null, AppSchedulingDevice::getSchedulingId, bo.getSchedulingId()); + lqw.eq(bo.getDeviceId() != null, AppSchedulingDevice::getDeviceId, bo.getDeviceId()); + return lqw; + } + + /** + * 新增排程与设备关联 + * + * @param bo 排程与设备关联 + * @return 是否新增成功 + */ + @Override + public Boolean insertByBo(AppSchedulingDeviceBo bo) { + AppSchedulingDevice add = MapstructUtils.convert(bo, AppSchedulingDevice.class); + validEntityBeforeSave(add); + boolean flag = baseMapper.insert(add) > 0; + if (flag) { + bo.setSchedulingId(add.getSchedulingId()); + } + return flag; + } + + /** + * 修改排程与设备关联 + * + * @param bo 排程与设备关联 + * @return 是否修改成功 + */ + @Override + public Boolean updateByBo(AppSchedulingDeviceBo bo) { + AppSchedulingDevice update = MapstructUtils.convert(bo, AppSchedulingDevice.class); + validEntityBeforeSave(update); + return baseMapper.updateById(update) > 0; + } + + /** + * 保存前的数据校验 + */ + private void validEntityBeforeSave(AppSchedulingDevice entity){ + //TODO 做一些数据校验,如唯一约束 + } + + /** + * 校验并批量删除排程与设备关联信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + @Override + public Boolean deleteWithValidByIds(Collection ids, Boolean isValid) { + if(isValid){ + //TODO 做一些业务上的校验,判断是否需要校验 + } + return baseMapper.deleteByIds(ids) > 0; + } +} diff --git a/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppWateringLogServiceImpl.java b/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppWateringLogServiceImpl.java new file mode 100644 index 0000000..8e84eaa --- /dev/null +++ b/water-modules/water-app/src/main/java/org/dromara/app/service/impl/AppWateringLogServiceImpl.java @@ -0,0 +1,140 @@ +package org.dromara.app.service.impl; + +import org.dromara.common.core.utils.MapstructUtils; +import org.dromara.common.core.utils.StringUtils; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; +import org.dromara.app.domain.bo.AppWateringLogBo; +import org.dromara.app.domain.vo.AppWateringLogVo; +import org.dromara.app.domain.AppWateringLog; +import org.dromara.app.mapper.AppWateringLogMapper; +import org.dromara.app.service.IAppWateringLogService; + +import java.util.List; +import java.util.Map; +import java.util.Collection; + +/** + * 浇水记录Service业务层处理 + * + * @author Lion Li + * @date 2026-04-25 + */ +@Slf4j +@RequiredArgsConstructor +@Service +public class AppWateringLogServiceImpl implements IAppWateringLogService { + + private final AppWateringLogMapper baseMapper; + + /** + * 查询浇水记录 + * + * @param id 主键 + * @return 浇水记录 + */ + @Override + public AppWateringLogVo queryById(Long id){ + return baseMapper.selectVoById(id); + } + + /** + * 分页查询浇水记录列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 浇水记录分页列表 + */ + @Override + public TableDataInfo queryPageList(AppWateringLogBo bo, PageQuery pageQuery) { + LambdaQueryWrapper lqw = buildQueryWrapper(bo); + Page result = baseMapper.selectVoPage(pageQuery.build(), lqw); + return TableDataInfo.build(result); + } + + /** + * 查询符合条件的浇水记录列表 + * + * @param bo 查询条件 + * @return 浇水记录列表 + */ + @Override + public List queryList(AppWateringLogBo bo) { + LambdaQueryWrapper lqw = buildQueryWrapper(bo); + return baseMapper.selectVoList(lqw); + } + + private LambdaQueryWrapper buildQueryWrapper(AppWateringLogBo bo) { + Map params = bo.getParams(); + LambdaQueryWrapper lqw = Wrappers.lambdaQuery(); + lqw.orderByAsc(AppWateringLog::getId); + lqw.eq(bo.getUserId() != null, AppWateringLog::getUserId, bo.getUserId()); + lqw.eq(bo.getDeviceId() != null, AppWateringLog::getDeviceId, bo.getDeviceId()); + lqw.eq(bo.getScheduleId() != null, AppWateringLog::getScheduleId, bo.getScheduleId()); + lqw.eq(bo.getStartTime() != null, AppWateringLog::getStartTime, bo.getStartTime()); + lqw.eq(bo.getEndTime() != null, AppWateringLog::getEndTime, bo.getEndTime()); + lqw.eq(StringUtils.isNotBlank(bo.getDurationMin()), AppWateringLog::getDurationMin, bo.getDurationMin()); + lqw.eq(StringUtils.isNotBlank(bo.getZones()), AppWateringLog::getZones, bo.getZones()); + lqw.eq(StringUtils.isNotBlank(bo.getTriggerType()), AppWateringLog::getTriggerType, bo.getTriggerType()); + lqw.eq(bo.getCreatedTime() != null, AppWateringLog::getCreatedTime, bo.getCreatedTime()); + return lqw; + } + + /** + * 新增浇水记录 + * + * @param bo 浇水记录 + * @return 是否新增成功 + */ + @Override + public Boolean insertByBo(AppWateringLogBo bo) { + AppWateringLog add = MapstructUtils.convert(bo, AppWateringLog.class); + validEntityBeforeSave(add); + boolean flag = baseMapper.insert(add) > 0; + if (flag) { + bo.setId(add.getId()); + } + return flag; + } + + /** + * 修改浇水记录 + * + * @param bo 浇水记录 + * @return 是否修改成功 + */ + @Override + public Boolean updateByBo(AppWateringLogBo bo) { + AppWateringLog update = MapstructUtils.convert(bo, AppWateringLog.class); + validEntityBeforeSave(update); + return baseMapper.updateById(update) > 0; + } + + /** + * 保存前的数据校验 + */ + private void validEntityBeforeSave(AppWateringLog entity){ + //TODO 做一些数据校验,如唯一约束 + } + + /** + * 校验并批量删除浇水记录信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + @Override + public Boolean deleteWithValidByIds(Collection ids, Boolean isValid) { + if(isValid){ + //TODO 做一些业务上的校验,判断是否需要校验 + } + return baseMapper.deleteByIds(ids) > 0; + } +} diff --git a/water-modules/water-app/src/main/resources/mapper/app/AppDeviceMapper.xml b/water-modules/water-app/src/main/resources/mapper/app/AppDeviceMapper.xml new file mode 100644 index 0000000..a46d135 --- /dev/null +++ b/water-modules/water-app/src/main/resources/mapper/app/AppDeviceMapper.xml @@ -0,0 +1,6 @@ + + + + diff --git a/water-modules/water-app/src/main/resources/mapper/app/AppScheduleDetailMapper.xml b/water-modules/water-app/src/main/resources/mapper/app/AppScheduleDetailMapper.xml new file mode 100644 index 0000000..c131d68 --- /dev/null +++ b/water-modules/water-app/src/main/resources/mapper/app/AppScheduleDetailMapper.xml @@ -0,0 +1,6 @@ + + + + diff --git a/water-modules/water-app/src/main/resources/mapper/app/AppScheduleMapper.xml b/water-modules/water-app/src/main/resources/mapper/app/AppScheduleMapper.xml new file mode 100644 index 0000000..352f35b --- /dev/null +++ b/water-modules/water-app/src/main/resources/mapper/app/AppScheduleMapper.xml @@ -0,0 +1,6 @@ + + + + diff --git a/water-modules/water-app/src/main/resources/mapper/app/AppSchedulingDeviceMapper.xml b/water-modules/water-app/src/main/resources/mapper/app/AppSchedulingDeviceMapper.xml new file mode 100644 index 0000000..58ffa0d --- /dev/null +++ b/water-modules/water-app/src/main/resources/mapper/app/AppSchedulingDeviceMapper.xml @@ -0,0 +1,6 @@ + + + + diff --git a/water-modules/water-app/src/main/resources/mapper/app/AppWateringLogMapper.xml b/water-modules/water-app/src/main/resources/mapper/app/AppWateringLogMapper.xml new file mode 100644 index 0000000..80646b5 --- /dev/null +++ b/water-modules/water-app/src/main/resources/mapper/app/AppWateringLogMapper.xml @@ -0,0 +1,6 @@ + + + +