redis-cluster搭建及拓扑刷新java测试

redis-cluster搭建及拓扑刷新java测试

一、redis-cluster搭建

基于docker搭建一个伪集群,三主三从。

虚拟机ip: 192.168.1.8。

内部redis容器ip分别是:

容器名称       对应ip
redis-node1: 172.17.0.2  master
redis-node2: 172.17.0.3  master
redis-node3: 172.17.0.4  master
redis-node4: 172.17.0.5  slave
redis-node5: 172.17.0.6  slave
redis-node6: 172.17.0.7  slave

  1. 下载最新的redis镜像
docker pull redis
  1. 生成6个redis.config文件
for port in $(seq 1 6); \
do \
mkdir -p /root/volume/redis/node-${port}/conf
touch /root/volume/redis/node-${port}/conf/redis.conf
cat << TTT > /root/volume/redis/node-${port}/conf/redis.conf
protected-mode no
port 736${port}
masterauth 123456
requirepass 123456
cluster-enabled yes
cluster-config-file nodes.conf
cluster-node-timeout 5000
cluster-announce-ip 192.168.1.8
cluster-announce-port 736${port}
cluster-announce-bus-port 1736${port}
appendonly yes
TTT
done
  1. 启动6个redis容器
for port in $(seq 1 6); \
do \
docker run --privileged=true --name redis-node${port} --restart=always \
-p 736${port}:736${port} -p 1736${port}:1736${port} \
-v /root/volume/redis/node-${port}/data:/data \
-v /root/volume/redis/node-${port}/conf/redis.conf:/etc/redis/redis.conf \
-d redis:latest redis-server /etc/redis/redis.conf
done
  1. 构建redis集群
# 1. 查看容器编号
docker ps 

# 2. 进入redis-node1容器
docker exec -it 5f6242716563 bash

# 3.  -a 密码
redis-cli -a 123456 --cluster create \
192.168.1.8:7361 192.168.1.8:7362 \
192.168.1.8:7363 192.168.1.8:7364 \
192.168.1.8:7365 192.168.1.8:7366 --cluster-replicas 1
  1. 查看集群信息
# 进入一个容器
docker exec -it 5f6242716563 bash
# -a 密码 -h 地址 -p 端口
redis-cli -c -a 123456 -h 192.168.1.8 -p 7361
# 查看集群
192.168.1.8:7366> cluster nodes
490f88d5ca7553fc20b68aada126354719585105 192.168.1.8:7365@17365 slave 8739c028cd601e9030c04109f1655ac759620557 0 1660793217595 3 connected
d2d8421f679570a8e24369f4b595abcd5babe93d 192.168.1.8:7366@17366 myself,master - 0 1660793217000 11 connected 0-5460
04f1673c88e00a692e41512e38eaa45902b6b240 192.168.1.8:7361@17361 master,fail - 1660788716526 1660788714504 1 disconnected
5216eb9a1214f000dc620745d81f2e484ddc8665 192.168.1.8:7364@17364 slave 3623ff4dc0aaa9416e315a76260a4ca6eb67e95c 0 1660793217000 10 connected
3623ff4dc0aaa9416e315a76260a4ca6eb67e95c 192.168.1.8:7362@17362 master - 0 1660793218504 10 connected 5461-10922
8739c028cd601e9030c04109f1655ac759620557 192.168.1.8:7363@17363 master - 0 1660793218705 3 connected 10923-16383
  1. 查看每个容器的ip
[root@localhost ~]# 
[root@localhost ~]# for port in $(seq 1 6); \
> do \
> docker inspect --format='{{.NetworkSettings.IPAddress}}' redis-node${port}
> done
172.17.0.2
172.17.0.3
172.17.0.4
172.17.0.5
172.17.0.6
172.17.0.7
[root@localhost ~]# 

二、测试redis-cluster的主从切换

通过手动关闭或启动一个master观察集群主从切换情况。

  1. 手动关闭一个maser的docker容器: redis-node2
# 停掉master: redis-node2
[root@localhost ~]# docker stop dee101b77b66  
dee101b77b66
[root@localhost ~]# docker ps 
CONTAINER ID   IMAGE          COMMAND                  CREATED       STATUS       PORTS                                                                                                NAMES
a659a1b0a513   redis:latest   "docker-entrypoint.s…"   5 hours ago   Up 5 hours   0.0.0.0:7366->7366/tcp, :::7366->7366/tcp, 6379/tcp, 0.0.0.0:17366->17366/tcp, :::17366->17366/tcp   redis-node6
78c368f1ff60   redis:latest   "docker-entrypoint.s…"   5 hours ago   Up 5 hours   0.0.0.0:7365->7365/tcp, :::7365->7365/tcp, 6379/tcp, 0.0.0.0:17365->17365/tcp, :::17365->17365/tcp   redis-node5
dab48aee5bb4   redis:latest   "docker-entrypoint.s…"   5 hours ago   Up 5 hours   0.0.0.0:7364->7364/tcp, :::7364->7364/tcp, 6379/tcp, 0.0.0.0:17364->17364/tcp, :::17364->17364/tcp   redis-node4
e0529e135a56   redis:latest   "docker-entrypoint.s…"   5 hours ago   Up 5 hours   0.0.0.0:7363->7363/tcp, :::7363->7363/tcp, 6379/tcp, 0.0.0.0:17363->17363/tcp, :::17363->17363/tcp   redis-node3
5f6242716563   redis:latest   "docker-entrypoint.s…"   5 hours ago   Up 5 hours   0.0.0.0:7361->7361/tcp, :::7361->7361/tcp, 6379/tcp, 0.0.0.0:17361->17361/tcp, :::17361->17361/tcp   redis-node1
[root@localhost ~]# 
  1. 手动启动关闭的docker容器: redis-node2
[root@localhost ~]# docker start dee101b77b66
dee101b77b66
[root@localhost ~]# docker ps 
CONTAINER ID   IMAGE          COMMAND                  CREATED       STATUS         PORTS                                                                                                NAMES
a659a1b0a513   redis:latest   "docker-entrypoint.s…"   5 hours ago   Up 5 hours     0.0.0.0:7366->7366/tcp, :::7366->7366/tcp, 6379/tcp, 0.0.0.0:17366->17366/tcp, :::17366->17366/tcp   redis-node6
78c368f1ff60   redis:latest   "docker-entrypoint.s…"   5 hours ago   Up 5 hours     0.0.0.0:7365->7365/tcp, :::7365->7365/tcp, 6379/tcp, 0.0.0.0:17365->17365/tcp, :::17365->17365/tcp   redis-node5
dab48aee5bb4   redis:latest   "docker-entrypoint.s…"   5 hours ago   Up 5 hours     0.0.0.0:7364->7364/tcp, :::7364->7364/tcp, 6379/tcp, 0.0.0.0:17364->17364/tcp, :::17364->17364/tcp   redis-node4
e0529e135a56   redis:latest   "docker-entrypoint.s…"   5 hours ago   Up 5 hours     0.0.0.0:7363->7363/tcp, :::7363->7363/tcp, 6379/tcp, 0.0.0.0:17363->17363/tcp, :::17363->17363/tcp   redis-node3
dee101b77b66   redis:latest   "docker-entrypoint.s…"   5 hours ago   Up 3 seconds   0.0.0.0:7362->7362/tcp, :::7362->7362/tcp, 6379/tcp, 0.0.0.0:17362->17362/tcp, :::17362->17362/tcp   redis-node2
5f6242716563   redis:latest   "docker-entrypoint.s…"   5 hours ago   Up 5 hours     0.0.0.0:7361->7361/tcp, :::7361->7361/tcp, 6379/tcp, 0.0.0.0:17361->17361/tcp, :::17361->17361/tcp   redis-node1
[root@localhost ~]# 

三、测试redis客户端的拓扑刷新功能

客户端基于lettuce-core:6.1.5.RELEASE和低版本的springboot:2.1.3.RELEASE

1.redis链接配置

spring:
  redis:
    cluster:
      max-redirects: 3
      nodes:
        - 192.168.1.8:7361
    password: 123456
    timeout: 2000
    lettuce:
      pool:
        min-idle: 20
        max-idle: 50
        max-active: 300
        max-wait: 2000

2.添加redis拓扑刷新配置

import io.lettuce.core.TimeoutOptions;
import io.lettuce.core.cluster.ClusterClientOptions;
import io.lettuce.core.cluster.ClusterTopologyRefreshOptions;
import org.springframework.boot.autoconfigure.data.redis.LettuceClientConfigurationBuilderCustomizer;
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;

import java.time.Duration;

@Component
public class RedisConfig {

    /**
     * redis 支持lettuce拓扑刷新、新ip自动发现
     * @return
     */
    @Bean
    public LettuceClientConfigurationBuilderCustomizer lettuceClientConfigurationBuilderCustomizer() {

        return clientConfigurationBuilder -> {
            // 配置用于开启自适应刷新和定时刷新。如自适应刷新不开启,Redis集群变更时将会导致连接异常
            ClusterTopologyRefreshOptions clusterTopologyRefreshOptions = ClusterTopologyRefreshOptions.builder()
                    //  开启自适应刷新
                   // .enableAllAdaptiveRefreshTriggers() // 自适应刷新 (可能不能保证刷新的时效性)
                    .enablePeriodicRefresh(Duration.ofSeconds(10)) // 每隔10秒拿一次集群的拓扑信息 ( 业务敏感可以使用这种)
                    .build();

            ClusterClientOptions clusterClientOptions = ClusterClientOptions.builder()
                    //redis 命令超时时间 根据自己需要设置这里设置为2s
                    .timeoutOptions(TimeoutOptions.enabled(Duration.ofSeconds(2)))
                    //拓扑刷新
                    .topologyRefreshOptions(clusterTopologyRefreshOptions)
                    .autoReconnect(true)
                    .build();
            clientConfigurationBuilder
                    .clientOptions(clusterClientOptions);
        };
    }
}

2.定时每隔1s中随机生成key,调用redis的get方法

@Scheduled(cron = "0/1 * * * * ?") 
public void test(){
    try {
        String name = redisUtils.get(UUID.randomUUID().toString());
        log.info("redis测试{}",name);
    }catch (Exception e){
        log.info("redis测试异常",e);
    }
}

3.手动关闭一个redis的master节点

4.观察日志

# 1.启动服务
[2022-08-18 11:08:36,893] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:37,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:38,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:39,006] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:40,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:41,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:42,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:43,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:44,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:45,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:46,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:47,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:48,006] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:49,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:50,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:51,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:52,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:53,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:54,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:55,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:56,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:57,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:58,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:08:59,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:00,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:01,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:02,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:03,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:04,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:05,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:06,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:07,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:08,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:09,014] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:10,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null

# 2.关闭一个master 客户端开始报错
[2022-08-18 11:09:13,006] [INFO ] [] [58 ] c.y.o.e.c.CacheSchedule - redis测试异常
org.springframework.dao.QueryTimeoutException: Redis command timed out; nested exception is io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:70)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41)
	at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44)
	at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:42)
	at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:268)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.convertLettuceAccessException(LettuceStringCommands.java:799)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:68)
	at org.springframework.data.redis.connection.DefaultedRedisConnection.get(DefaultedRedisConnection.java:253)
	at org.springframework.data.redis.connection.DefaultStringRedisConnection.get(DefaultStringRedisConnection.java:377)
	at org.springframework.data.redis.core.DefaultValueOperations$1.inRedis(DefaultValueOperations.java:57)
	at org.springframework.data.redis.core.AbstractOperations$ValueDeserializingRedisCallback.doInRedis(AbstractOperations.java:59)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:224)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:184)
	at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:95)
	at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:53)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:229)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:334)
	at com.yonghui.or.eta.cache.CacheSchedule.testaa(CacheSchedule.java:54)
	at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
	at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
	at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
Caused by: io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at io.lettuce.core.internal.ExceptionFactory.createTimeoutException(ExceptionFactory.java:53)
	at io.lettuce.core.internal.Futures.awaitOrCancel(Futures.java:246)
	at io.lettuce.core.cluster.ClusterFutureSyncInvocationHandler.handleInvocation(ClusterFutureSyncInvocationHandler.java:130)
	at io.lettuce.core.internal.AbstractInvocationHandler.invoke(AbstractInvocationHandler.java:80)
	at com.sun.proxy.$Proxy205.get(Unknown Source)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:66)
	... 24 common frames omitted
[2022-08-18 11:09:14,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:15,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:15,344] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:09:16,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:17,010] [INFO ] [] [58 ] c.y.o.e.c.CacheSchedule - redis测试异常
org.springframework.data.redis.RedisSystemException: Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: CLUSTERDOWN The cluster is down
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:54)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:52)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41)
	at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44)
	at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:42)
	at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:268)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.convertLettuceAccessException(LettuceStringCommands.java:799)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:68)
	at org.springframework.data.redis.connection.DefaultedRedisConnection.get(DefaultedRedisConnection.java:253)
	at org.springframework.data.redis.connection.DefaultStringRedisConnection.get(DefaultStringRedisConnection.java:377)
	at org.springframework.data.redis.core.DefaultValueOperations$1.inRedis(DefaultValueOperations.java:57)
	at org.springframework.data.redis.core.AbstractOperations$ValueDeserializingRedisCallback.doInRedis(AbstractOperations.java:59)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:224)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:184)
	at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:95)
	at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:53)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:229)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:334)
	at com.yonghui.or.eta.cache.CacheSchedule.testaa(CacheSchedule.java:54)
	at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
	at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
	at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
Caused by: io.lettuce.core.RedisCommandExecutionException: CLUSTERDOWN The cluster is down
	at io.lettuce.core.internal.ExceptionFactory.createExecutionException(ExceptionFactory.java:137)
	at io.lettuce.core.internal.ExceptionFactory.createExecutionException(ExceptionFactory.java:110)
	at io.lettuce.core.protocol.AsyncCommand.completeResult(AsyncCommand.java:120)
	at io.lettuce.core.protocol.AsyncCommand.complete(AsyncCommand.java:111)
	at io.lettuce.core.protocol.CommandWrapper.complete(CommandWrapper.java:63)
	at io.lettuce.core.cluster.ClusterCommand.complete(ClusterCommand.java:65)
	at io.lettuce.core.protocol.CommandHandler.complete(CommandHandler.java:746)
	at io.lettuce.core.protocol.CommandHandler.decode(CommandHandler.java:681)
	at io.lettuce.core.protocol.CommandHandler.channelRead(CommandHandler.java:598)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348)
	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:340)
	at io.netty.channel.ChannelInboundHandlerAdapter.channelRead(ChannelInboundHandlerAdapter.java:86)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348)
	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:340)
	at io.netty.channel.ChannelInboundHandlerAdapter.channelRead(ChannelInboundHandlerAdapter.java:86)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348)
	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:340)
	at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1408)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348)
	at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:930)
	at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:163)
	at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:677)
	at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:612)
	at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:529)
	at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:491)
	at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:905)
	at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	... 1 common frames omitted
[2022-08-18 11:09:20,003] [INFO ] [] [58 ] c.y.o.e.c.CacheSchedule - redis测试异常
org.springframework.dao.QueryTimeoutException: Redis command timed out; nested exception is io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:70)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41)
	at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44)
	at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:42)
	at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:268)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.convertLettuceAccessException(LettuceStringCommands.java:799)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:68)
	at org.springframework.data.redis.connection.DefaultedRedisConnection.get(DefaultedRedisConnection.java:253)
	at org.springframework.data.redis.connection.DefaultStringRedisConnection.get(DefaultStringRedisConnection.java:377)
	at org.springframework.data.redis.core.DefaultValueOperations$1.inRedis(DefaultValueOperations.java:57)
	at org.springframework.data.redis.core.AbstractOperations$ValueDeserializingRedisCallback.doInRedis(AbstractOperations.java:59)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:224)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:184)
	at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:95)
	at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:53)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:229)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:334)
	at com.yonghui.or.eta.cache.CacheSchedule.testaa(CacheSchedule.java:54)
	at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
	at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
	at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
Caused by: io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at io.lettuce.core.internal.ExceptionFactory.createTimeoutException(ExceptionFactory.java:53)
	at io.lettuce.core.internal.Futures.awaitOrCancel(Futures.java:246)
	at io.lettuce.core.cluster.ClusterFutureSyncInvocationHandler.handleInvocation(ClusterFutureSyncInvocationHandler.java:130)
	at io.lettuce.core.internal.AbstractInvocationHandler.invoke(AbstractInvocationHandler.java:80)
	at com.sun.proxy.$Proxy205.get(Unknown Source)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:66)
	... 24 common frames omitted
[2022-08-18 11:09:21,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:21,543] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:09:22,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:23,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:24,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:27,001] [INFO ] [] [58 ] c.y.o.e.c.CacheSchedule - redis测试异常
org.springframework.dao.QueryTimeoutException: Redis command timed out; nested exception is io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:70)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41)
	at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44)
	at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:42)
	at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:268)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.convertLettuceAccessException(LettuceStringCommands.java:799)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:68)
	at org.springframework.data.redis.connection.DefaultedRedisConnection.get(DefaultedRedisConnection.java:253)
	at org.springframework.data.redis.connection.DefaultStringRedisConnection.get(DefaultStringRedisConnection.java:377)
	at org.springframework.data.redis.core.DefaultValueOperations$1.inRedis(DefaultValueOperations.java:57)
	at org.springframework.data.redis.core.AbstractOperations$ValueDeserializingRedisCallback.doInRedis(AbstractOperations.java:59)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:224)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:184)
	at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:95)
	at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:53)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:229)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:334)
	at com.yonghui.or.eta.cache.CacheSchedule.testaa(CacheSchedule.java:54)
	at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
	at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
	at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
Caused by: io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at io.lettuce.core.internal.ExceptionFactory.createTimeoutException(ExceptionFactory.java:53)
	at io.lettuce.core.internal.Futures.awaitOrCancel(Futures.java:246)
	at io.lettuce.core.cluster.ClusterFutureSyncInvocationHandler.handleInvocation(ClusterFutureSyncInvocationHandler.java:130)
	at io.lettuce.core.internal.AbstractInvocationHandler.invoke(AbstractInvocationHandler.java:80)
	at com.sun.proxy.$Proxy205.get(Unknown Source)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:66)
	... 24 common frames omitted
[2022-08-18 11:09:27,744] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:09:30,003] [INFO ] [] [58 ] c.y.o.e.c.CacheSchedule - redis测试异常
org.springframework.dao.QueryTimeoutException: Redis command timed out; nested exception is io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:70)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41)
	at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44)
	at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:42)
	at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:268)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.convertLettuceAccessException(LettuceStringCommands.java:799)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:68)
	at org.springframework.data.redis.connection.DefaultedRedisConnection.get(DefaultedRedisConnection.java:253)
	at org.springframework.data.redis.connection.DefaultStringRedisConnection.get(DefaultStringRedisConnection.java:377)
	at org.springframework.data.redis.core.DefaultValueOperations$1.inRedis(DefaultValueOperations.java:57)
	at org.springframework.data.redis.core.AbstractOperations$ValueDeserializingRedisCallback.doInRedis(AbstractOperations.java:59)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:224)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:184)
	at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:95)
	at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:53)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:229)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:334)
	at com.yonghui.or.eta.cache.CacheSchedule.testaa(CacheSchedule.java:54)
	at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
	at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
	at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
Caused by: io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at io.lettuce.core.internal.ExceptionFactory.createTimeoutException(ExceptionFactory.java:53)
	at io.lettuce.core.internal.Futures.awaitOrCancel(Futures.java:246)
	at io.lettuce.core.cluster.ClusterFutureSyncInvocationHandler.handleInvocation(ClusterFutureSyncInvocationHandler.java:130)
	at io.lettuce.core.internal.AbstractInvocationHandler.invoke(AbstractInvocationHandler.java:80)
	at com.sun.proxy.$Proxy205.get(Unknown Source)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:66)
	... 24 common frames omitted
[2022-08-18 11:09:33,001] [INFO ] [] [58 ] c.y.o.e.c.CacheSchedule - redis测试异常
org.springframework.dao.QueryTimeoutException: Redis command timed out; nested exception is io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:70)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41)
	at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44)
	at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:42)
	at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:268)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.convertLettuceAccessException(LettuceStringCommands.java:799)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:68)
	at org.springframework.data.redis.connection.DefaultedRedisConnection.get(DefaultedRedisConnection.java:253)
	at org.springframework.data.redis.connection.DefaultStringRedisConnection.get(DefaultStringRedisConnection.java:377)
	at org.springframework.data.redis.core.DefaultValueOperations$1.inRedis(DefaultValueOperations.java:57)
	at org.springframework.data.redis.core.AbstractOperations$ValueDeserializingRedisCallback.doInRedis(AbstractOperations.java:59)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:224)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:184)
	at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:95)
	at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:53)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:229)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:334)
	at com.yonghui.or.eta.cache.CacheSchedule.testaa(CacheSchedule.java:54)
	at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
	at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
	at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
Caused by: io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at io.lettuce.core.internal.ExceptionFactory.createTimeoutException(ExceptionFactory.java:53)
	at io.lettuce.core.internal.Futures.awaitOrCancel(Futures.java:246)
	at io.lettuce.core.cluster.ClusterFutureSyncInvocationHandler.handleInvocation(ClusterFutureSyncInvocationHandler.java:130)
	at io.lettuce.core.internal.AbstractInvocationHandler.invoke(AbstractInvocationHandler.java:80)
	at com.sun.proxy.$Proxy205.get(Unknown Source)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:66)
	... 24 common frames omitted
[2022-08-18 11:09:33,944] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:09:34,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:35,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:36,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:39,003] [INFO ] [] [58 ] c.y.o.e.c.CacheSchedule - redis测试异常
org.springframework.dao.QueryTimeoutException: Redis command timed out; nested exception is io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:70)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41)
	at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44)
	at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:42)
	at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:268)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.convertLettuceAccessException(LettuceStringCommands.java:799)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:68)
	at org.springframework.data.redis.connection.DefaultedRedisConnection.get(DefaultedRedisConnection.java:253)
	at org.springframework.data.redis.connection.DefaultStringRedisConnection.get(DefaultStringRedisConnection.java:377)
	at org.springframework.data.redis.core.DefaultValueOperations$1.inRedis(DefaultValueOperations.java:57)
	at org.springframework.data.redis.core.AbstractOperations$ValueDeserializingRedisCallback.doInRedis(AbstractOperations.java:59)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:224)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:184)
	at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:95)
	at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:53)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:229)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:334)
	at com.yonghui.or.eta.cache.CacheSchedule.testaa(CacheSchedule.java:54)
	at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
	at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
	at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
Caused by: io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at io.lettuce.core.internal.ExceptionFactory.createTimeoutException(ExceptionFactory.java:53)
	at io.lettuce.core.internal.Futures.awaitOrCancel(Futures.java:246)
	at io.lettuce.core.cluster.ClusterFutureSyncInvocationHandler.handleInvocation(ClusterFutureSyncInvocationHandler.java:130)
	at io.lettuce.core.internal.AbstractInvocationHandler.invoke(AbstractInvocationHandler.java:80)
	at com.sun.proxy.$Proxy205.get(Unknown Source)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:66)
	... 24 common frames omitted
[2022-08-18 11:09:40,145] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:09:40,145] [WARN ] [] [347] i.l.c.c.t.DefaultClusterTopologyRefresh - Unable to connect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
[2022-08-18 11:09:42,002] [INFO ] [] [58 ] c.y.o.e.c.CacheSchedule - redis测试异常
org.springframework.dao.QueryTimeoutException: Redis command timed out; nested exception is io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:70)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41)
	at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44)
	at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:42)
	at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:268)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.convertLettuceAccessException(LettuceStringCommands.java:799)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:68)
	at org.springframework.data.redis.connection.DefaultedRedisConnection.get(DefaultedRedisConnection.java:253)
	at org.springframework.data.redis.connection.DefaultStringRedisConnection.get(DefaultStringRedisConnection.java:377)
	at org.springframework.data.redis.core.DefaultValueOperations$1.inRedis(DefaultValueOperations.java:57)
	at org.springframework.data.redis.core.AbstractOperations$ValueDeserializingRedisCallback.doInRedis(AbstractOperations.java:59)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:224)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:184)
	at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:95)
	at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:53)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:229)
	at com.yonghui.redis.utils.RedisUtils.get(RedisUtils.java:334)
	at com.yonghui.or.eta.cache.CacheSchedule.testaa(CacheSchedule.java:54)
	at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
	at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
	at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
Caused by: io.lettuce.core.RedisCommandTimeoutException: Command timed out after 2 second(s)
	at io.lettuce.core.internal.ExceptionFactory.createTimeoutException(ExceptionFactory.java:53)
	at io.lettuce.core.internal.Futures.awaitOrCancel(Futures.java:246)
	at io.lettuce.core.cluster.ClusterFutureSyncInvocationHandler.handleInvocation(ClusterFutureSyncInvocationHandler.java:130)
	at io.lettuce.core.internal.AbstractInvocationHandler.invoke(AbstractInvocationHandler.java:80)
	at com.sun.proxy.$Proxy205.get(Unknown Source)
	at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.get(LettuceStringCommands.java:66)
	... 24 common frames omitted
	
# redis客户端自动恢复 不再报错	
[2022-08-18 11:09:43,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:44,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:45,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:46,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null

# 客户端告警信息 不影响正常访问
[2022-08-18 11:09:46,343] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:09:47,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:48,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:49,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:50,007] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:51,005] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:52,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:52,544] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:09:53,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:54,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:55,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:56,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:57,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:58,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:09:58,845] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:09:59,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:00,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:01,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:02,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:03,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:04,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:05,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:05,243] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:10:06,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:07,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:08,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:09,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:10,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:11,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null

# DefaultClusterTopologyRefresh自动拓扑刷新
[2022-08-18 11:10:11,943] [WARN ] [] [347] i.l.c.c.t.DefaultClusterTopologyRefresh - Unable to connect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
[2022-08-18 11:10:11,943] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:10:12,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:13,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:14,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:15,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:16,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:17,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:18,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:19,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:19,144] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:10:20,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:21,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:22,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:23,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:24,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:25,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:26,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:27,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:27,343] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:10:28,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:29,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:30,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:31,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:32,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:33,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:34,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:35,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:36,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:37,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:37,543] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:10:38,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:39,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:40,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:41,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:42,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:43,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:44,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:45,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:46,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:47,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:48,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:49,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:50,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:51,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:51,843] [WARN ] [] [347] i.l.c.c.t.DefaultClusterTopologyRefresh - Unable to connect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
[2022-08-18 11:10:51,843] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:10:52,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:53,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:54,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:55,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:56,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:57,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:58,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:10:59,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:00,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:01,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:02,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:03,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:04,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:05,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:06,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:07,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:08,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:09,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:10,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:11,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:12,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:13,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:14,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:14,345] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:11:15,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:16,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:17,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:18,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:19,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:20,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:21,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:22,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:23,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:24,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:25,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:26,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:27,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:28,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:29,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:30,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:31,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:32,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:33,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:34,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:35,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:36,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:37,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:38,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:39,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:40,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:41,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:42,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:43,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:44,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:45,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:46,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:47,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:48,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:49,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:50,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:50,545] [WARN ] [] [347] i.l.c.c.t.DefaultClusterTopologyRefresh - Unable to connect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
[2022-08-18 11:11:50,545] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:11:51,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:52,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:53,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:54,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:55,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:56,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:57,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:58,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:11:59,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:00,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:01,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:02,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:03,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:04,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:05,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:06,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:07,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:08,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:09,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:10,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:11,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:12,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:13,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:14,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:15,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:16,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:17,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:18,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:19,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:20,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:21,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:22,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:23,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:24,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:25,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:26,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:26,744] [WARN ] [] [347] i.l.c.c.t.DefaultClusterTopologyRefresh - Unable to connect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
[2022-08-18 11:12:26,744] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:12:27,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:28,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:29,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:30,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:31,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:32,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:33,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:34,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:35,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:36,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:37,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:38,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:39,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:40,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:41,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:42,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:43,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:44,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:45,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:46,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:47,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:48,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:49,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:50,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:51,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:52,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:53,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:54,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:55,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:56,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:57,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:58,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:12:59,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:00,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:01,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:02,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:02,944] [WARN ] [] [347] i.l.c.c.t.DefaultClusterTopologyRefresh - Unable to connect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
[2022-08-18 11:13:02,944] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:13:03,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:04,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:05,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:06,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:07,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:08,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:09,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:10,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:11,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:12,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:13,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:14,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:15,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:16,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:17,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:18,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:19,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:20,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:21,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:22,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:23,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:24,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:25,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:26,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:27,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:28,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:29,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:30,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:31,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:32,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:33,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:34,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:35,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:36,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:37,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:38,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:39,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:39,144] [WARN ] [] [347] i.l.c.c.t.DefaultClusterTopologyRefresh - Unable to connect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
[2022-08-18 11:13:39,144] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
[2022-08-18 11:13:40,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:41,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:42,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:43,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:44,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:45,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:46,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:47,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:48,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:49,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:50,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:51,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:52,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:53,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:54,014] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:55,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:56,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:57,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:58,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:13:59,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:00,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:01,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:02,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:03,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:04,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:05,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:06,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:07,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:08,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:09,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:10,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:11,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:12,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:13,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:14,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:15,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:15,343] [WARN ] [] [347] i.l.c.c.t.DefaultClusterTopologyRefresh - Unable to connect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
[2022-08-18 11:14:15,343] [WARN ] [] [107] i.l.c.p.ConnectionWatchdog - Cannot reconnect to [192.168.1.8:7362]: java.nio.channels.ClosedChannelException
java.nio.channels.ClosedChannelException: null
	at io.netty.channel.nio.AbstractNioChannel.doClose()(Unknown Source)
	
# 在关闭的master未启动的情况下 客户端不再告警	
[2022-08-18 11:14:16,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:17,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:18,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:19,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:20,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:21,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:22,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:23,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:24,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:25,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:26,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:27,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:28,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:29,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:30,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:31,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:32,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:33,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:34,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:35,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:36,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:37,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:38,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:39,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:40,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:41,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:42,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:43,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:44,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:45,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:46,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:47,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:48,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:49,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:50,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:51,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:52,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:53,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:54,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:55,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:56,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:57,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:58,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:14:59,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:00,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:01,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:02,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:03,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:04,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:05,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:06,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:07,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:08,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:09,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:10,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:11,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:12,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:13,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:14,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:15,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:16,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:17,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:18,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:19,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:20,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:21,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:22,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:23,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:24,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:25,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:26,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:27,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:28,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:29,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:30,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:31,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:32,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:33,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:34,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:35,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:36,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:37,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:38,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:39,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:40,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:41,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:42,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:43,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:44,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:45,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:46,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:47,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:48,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:49,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:50,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:51,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:52,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:53,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:54,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:55,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:56,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:57,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:58,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:15:59,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:00,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:01,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:02,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:03,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:04,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:05,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:06,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:07,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:08,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:09,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:10,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:11,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:12,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:13,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:14,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:15,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:16,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:17,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:18,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:19,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:20,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:21,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:22,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:23,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:24,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:25,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:26,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:27,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:28,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:29,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:30,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:31,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:32,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:33,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:34,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:35,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:36,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:37,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:38,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:39,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:40,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:41,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:42,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:43,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:44,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:45,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:46,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:47,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:48,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:49,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:50,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:51,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:52,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:53,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:54,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:55,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:56,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:57,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:58,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:16:59,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:00,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:01,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:02,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:03,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:04,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:05,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:06,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:07,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:08,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:09,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:10,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:11,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:12,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:13,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:14,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:15,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:16,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:17,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:18,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:19,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:20,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:21,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:22,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:23,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:24,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:25,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:26,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:27,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:28,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:29,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:30,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:31,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:32,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:33,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:34,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:35,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:36,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:37,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:38,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:39,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:40,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:41,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:42,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:43,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:44,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:45,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:46,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:47,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:48,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:49,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:50,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:51,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:52,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:53,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:54,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:55,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:56,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:57,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:58,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:17:59,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:00,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:01,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:02,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:03,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:04,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:05,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:06,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:07,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:08,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:09,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:10,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:11,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:12,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:13,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:14,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:15,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:16,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:17,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:18,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:19,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:20,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:21,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:22,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:23,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:24,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:25,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:26,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:27,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:28,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:29,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:30,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:31,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:32,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:33,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:34,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:35,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:36,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:37,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:38,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:39,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:40,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:41,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:42,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:43,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:44,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:45,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:46,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:47,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:48,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:49,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:50,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:51,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:52,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:53,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:54,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:55,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:56,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:57,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:58,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:18:59,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:00,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:01,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:02,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:03,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:04,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:05,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:06,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:07,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:08,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:09,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:10,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:11,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:12,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:13,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:14,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:15,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:16,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:17,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:18,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:19,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:20,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:21,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:22,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:23,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:24,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:25,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:26,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:27,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:28,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:29,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:30,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:31,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:32,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:33,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:34,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:35,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:36,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:37,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:38,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:39,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:40,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:41,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:42,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:43,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:44,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:45,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:46,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:47,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:48,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:49,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:50,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:51,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:52,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:53,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:54,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:55,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:56,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:57,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:58,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:19:59,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:00,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:01,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:02,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:03,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:04,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:05,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:06,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:07,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:08,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:09,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:10,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:11,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:12,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:13,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:14,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:15,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:16,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:17,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:18,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:19,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:20,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:21,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:22,021] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:23,011] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:24,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:25,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:26,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:27,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:28,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:29,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:30,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:31,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:32,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:33,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:34,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:35,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:36,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:37,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:38,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:39,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:40,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:41,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:42,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:43,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:44,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:45,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:46,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:47,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:48,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:49,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:50,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:51,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:52,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:53,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:54,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:55,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:56,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:57,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:58,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:20:59,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:00,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:01,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:02,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:03,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:04,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:05,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:06,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:07,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:08,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:09,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:10,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:11,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:12,004] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:13,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:14,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:15,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:16,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:17,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:18,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:19,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:20,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:21,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:22,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:23,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:24,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:25,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:26,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:27,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:28,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:29,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:30,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:31,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:32,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:33,000] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:34,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:35,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:36,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:37,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:38,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:39,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:40,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:41,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:42,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:43,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:44,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:45,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:46,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:47,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:48,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:49,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:50,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:51,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:52,003] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:53,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:54,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:55,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:56,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:57,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:58,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:21:59,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:22:00,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:22:01,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:22:02,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:22:03,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:22:04,002] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:22:05,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null
[2022-08-18 11:22:06,001] [INFO ] [] [56 ] c.y.o.e.c.CacheSchedule - redis测试null

Process finished with exit code -1

  • 3
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值