• 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
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    1. 下载最新的redis镜像
    docker pull redis
    
    • 1
    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
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    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
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    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
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    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
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    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 ~]# 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    二、测试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
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    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 ~]# 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    三、测试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
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    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);
            };
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39

    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);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    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
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
    • 400
    • 401
    • 402
    • 403
    • 404
    • 405
    • 406
    • 407
    • 408
    • 409
    • 410
    • 411
    • 412
    • 413
    • 414
    • 415
    • 416
    • 417
    • 418
    • 419
    • 420
    • 421
    • 422
    • 423
    • 424
    • 425
    • 426
    • 427
    • 428
    • 429
    • 430
    • 431
    • 432
    • 433
    • 434
    • 435
    • 436
    • 437
    • 438
    • 439
    • 440
    • 441
    • 442
    • 443
    • 444
    • 445
    • 446
    • 447
    • 448
    • 449
    • 450
    • 451
    • 452
    • 453
    • 454
    • 455
    • 456
    • 457
    • 458
    • 459
    • 460
    • 461
    • 462
    • 463
    • 464
    • 465
    • 466
    • 467
    • 468
    • 469
    • 470
    • 471
    • 472
    • 473
    • 474
    • 475
    • 476
    • 477
    • 478
    • 479
    • 480
    • 481
    • 482
    • 483
    • 484
    • 485
    • 486
    • 487
    • 488
    • 489
    • 490
    • 491
    • 492
    • 493
    • 494
    • 495
    • 496
    • 497
    • 498
    • 499
    • 500
    • 501
    • 502
    • 503
    • 504
    • 505
    • 506
    • 507
    • 508
    • 509
    • 510
    • 511
    • 512
    • 513
    • 514
    • 515
    • 516
    • 517
    • 518
    • 519
    • 520
    • 521
    • 522
    • 523
    • 524
    • 525
    • 526
    • 527
    • 528
    • 529
    • 530
    • 531
    • 532
    • 533
    • 534
    • 535
    • 536
    • 537
    • 538
    • 539
    • 540
    • 541
    • 542
    • 543
    • 544
    • 545
    • 546
    • 547
    • 548
    • 549
    • 550
    • 551
    • 552
    • 553
    • 554
    • 555
    • 556
    • 557
    • 558
    • 559
    • 560
    • 561
    • 562
    • 563
    • 564
    • 565
    • 566
    • 567
    • 568
    • 569
    • 570
    • 571
    • 572
    • 573
    • 574
    • 575
    • 576
    • 577
    • 578
    • 579
    • 580
    • 581
    • 582
    • 583
    • 584
    • 585
    • 586
    • 587
    • 588
    • 589
    • 590
    • 591
    • 592
    • 593
    • 594
    • 595
    • 596
    • 597
    • 598
    • 599
    • 600
    • 601
    • 602
    • 603
    • 604
    • 605
    • 606
    • 607
    • 608
    • 609
    • 610
    • 611
    • 612
    • 613
    • 614
    • 615
    • 616
    • 617
    • 618
    • 619
    • 620
    • 621
    • 622
    • 623
    • 624
    • 625
    • 626
    • 627
    • 628
    • 629
    • 630
    • 631
    • 632
    • 633
    • 634
    • 635
    • 636
    • 637
    • 638
    • 639
    • 640
    • 641
    • 642
    • 643
    • 644
    • 645
    • 646
    • 647
    • 648
    • 649
    • 650
    • 651
    • 652
    • 653
    • 654
    • 655
    • 656
    • 657
    • 658
    • 659
    • 660
    • 661
    • 662
    • 663
    • 664
    • 665
    • 666
    • 667
    • 668
    • 669
    • 670
    • 671
    • 672
    • 673
    • 674
    • 675
    • 676
    • 677
    • 678
    • 679
    • 680
    • 681
    • 682
    • 683
    • 684
    • 685
    • 686
    • 687
    • 688
    • 689
    • 690
    • 691
    • 692
    • 693
    • 694
    • 695
    • 696
    • 697
    • 698
    • 699
    • 700
    • 701
    • 702
    • 703
    • 704
    • 705
    • 706
    • 707
    • 708
    • 709
    • 710
    • 711
    • 712
    • 713
    • 714
    • 715
    • 716
    • 717
    • 718
    • 719
    • 720
    • 721
    • 722
    • 723
    • 724
    • 725
    • 726
    • 727
    • 728
    • 729
    • 730
    • 731
    • 732
    • 733
    • 734
    • 735
    • 736
    • 737
    • 738
    • 739
    • 740
    • 741
    • 742
    • 743
    • 744
    • 745
    • 746
    • 747
    • 748
    • 749
    • 750
    • 751
    • 752
    • 753
    • 754
    • 755
    • 756
    • 757
    • 758
    • 759
    • 760
    • 761
    • 762
    • 763
    • 764
    • 765
    • 766
    • 767
    • 768
    • 769
    • 770
    • 771
    • 772
    • 773
    • 774
    • 775
    • 776
    • 777
    • 778
    • 779
    • 780
    • 781
    • 782
    • 783
    • 784
    • 785
    • 786
    • 787
    • 788
    • 789
    • 790
    • 791
    • 792
    • 793
    • 794
    • 795
    • 796
    • 797
    • 798
    • 799
    • 800
    • 801
    • 802
    • 803
    • 804
    • 805
    • 806
    • 807
    • 808
    • 809
    • 810
    • 811
    • 812
    • 813
    • 814
    • 815
    • 816
    • 817
    • 818
    • 819
    • 820
    • 821
    • 822
    • 823
    • 824
    • 825
    • 826
    • 827
    • 828
    • 829
    • 830
    • 831
    • 832
    • 833
    • 834
    • 835
    • 836
    • 837
    • 838
    • 839
    • 840
    • 841
    • 842
    • 843
    • 844
    • 845
    • 846
    • 847
    • 848
    • 849
    • 850
    • 851
    • 852
    • 853
    • 854
    • 855
    • 856
    • 857
    • 858
    • 859
    • 860
    • 861
    • 862
    • 863
    • 864
    • 865
    • 866
    • 867
    • 868
    • 869
    • 870
    • 871
    • 872
    • 873
    • 874
    • 875
    • 876
    • 877
    • 878
    • 879
    • 880
    • 881
    • 882
    • 883
    • 884
    • 885
    • 886
    • 887
    • 888
    • 889
    • 890
    • 891
    • 892
    • 893
    • 894
    • 895
    • 896
    • 897
    • 898
    • 899
    • 900
    • 901
    • 902
    • 903
    • 904
    • 905
    • 906
    • 907
    • 908
    • 909
    • 910
    • 911
    • 912
    • 913
    • 914
    • 915
    • 916
    • 917
    • 918
    • 919
    • 920
    • 921
    • 922
    • 923
    • 924
    • 925
    • 926
    • 927
    • 928
    • 929
    • 930
    • 931
    • 932
    • 933
    • 934
    • 935
    • 936
    • 937
    • 938
    • 939
    • 940
    • 941
    • 942
    • 943
    • 944
    • 945
    • 946
    • 947
    • 948
    • 949
    • 950
    • 951
    • 952
    • 953
    • 954
    • 955
    • 956
    • 957
    • 958
    • 959
    • 960
    • 961
    • 962
    • 963
    • 964
    • 965
    • 966
    • 967
    • 968
    • 969
    • 970
    • 971
    • 972
    • 973
    • 974
    • 975
    • 976
    • 977
    • 978
    • 979
    • 980
    • 981
    • 982
    • 983
    • 984
    • 985
    • 986
    • 987
    • 988
    • 989
    • 990
    • 991
    • 992
    • 993
    • 994
    • 995
    • 996
    • 997
    • 998
    • 999
    • 1000
    • 1001
    • 1002
    • 1003
    • 1004
    • 1005
    • 1006
    • 1007
    • 1008
    • 1009
    • 1010
    • 1011
    • 1012
    • 1013
    • 1014
    • 1015
    • 1016
    • 1017
    • 1018
    • 1019
    • 1020
    • 1021
    • 1022
    • 1023
    • 1024
    • 1025
    • 1026
    • 1027
    • 1028
    • 1029
    • 1030
    • 1031
    • 1032
    • 1033
    • 1034
    • 1035
    • 1036
    • 1037
    • 1038
    • 1039
    • 1040
    • 1041
    • 1042
    • 1043
    • 1044
    • 1045
    • 1046
    • 1047
    • 1048
    • 1049
    • 1050
    • 1051
    • 1052
    • 1053
    • 1054
    • 1055
    • 1056
    • 1057
    • 1058
    • 1059
    • 1060
    • 1061
    • 1062
    • 1063
    • 1064
    • 1065
    • 1066
    • 1067
    • 1068
    • 1069
    • 1070
    • 1071
    • 1072
    • 1073
    • 1074
    • 1075
    • 1076
    • 1077
    • 1078
    • 1079
    • 1080
    • 1081
    • 1082
    • 1083
    • 1084
    • 1085
    • 1086
    • 1087
    • 1088
    • 1089
    • 1090
    • 1091
    • 1092
    • 1093
    • 1094
    • 1095
    • 1096
    • 1097
    • 1098
    • 1099
    • 1100
    • 1101
    • 1102
    • 1103
    • 1104
    • 1105
    • 1106
    • 1107
    • 1108
    • 1109
    • 1110
    • 1111
    • 1112
    • 1113
    • 1114
    • 1115
    • 1116
    • 1117
    • 1118
    • 1119
    • 1120
    • 1121
    • 1122
    • 1123
    • 1124
    • 1125
    • 1126
    • 1127
    • 1128
    • 1129
    • 1130
    • 1131
    • 1132
    • 1133
    • 1134
    • 1135
    • 1136
    • 1137
    • 1138
    • 1139
    • 1140
    • 1141
    • 1142
    • 1143
    • 1144
    • 1145
    • 1146
    • 1147
    • 1148
    • 1149
    • 1150
    • 1151
    • 1152
    • 1153
    • 1154
    • 1155
    • 1156
    • 1157
    • 1158
    • 1159
    • 1160
    • 1161
    • 1162
    • 1163
    • 1164
    • 1165
    • 1166
    • 1167
    • 1168
    • 1169
    • 1170
    • 1171
    • 1172
    • 1173
    • 1174
    • 1175
    • 1176
    • 1177
    • 1178
    • 1179
    • 1180
    • 1181
    • 1182
    • 1183
    • 1184
    • 1185
    • 1186
    • 1187
    • 1188
    • 1189
    • 1190
    • 1191
    • 1192
    • 1193
    • 1194
    • 1195
    • 1196
    • 1197
    • 1198
    • 1199
    • 1200
    • 1201
    • 1202
    • 1203
    • 1204
    • 1205
    • 1206
    • 1207
    • 1208
    • 1209
    • 1210
    • 1211
    • 1212
    • 1213
    • 1214
    • 1215
    • 1216
    • 1217
    • 1218
    • 1219
    • 1220
    • 1221
    • 1222
    • 1223
    • 1224
    • 1225
  • 相关阅读:
    SpringCloud学习笔记(二)
    岩土工程监测中振弦采集仪数据处理与解读的挑战与方法
    springboot心理咨询管理系统
    【LeetCode】242. 有效的字母异位词 - hashmap
    【Linux】LVM原理及核心概念
    Meta-Dataset 数据集介绍及处理
    Vue 指令、计算属性、侦听器
    Flutter 应用启动从闪屏页短暂黑屏再到第一个页面
    【Pytorch深度学习实战】(5)卷积神经网络(CNN)
    vscode使用远程服务器jupyter
  • 原文地址:https://blog.csdn.net/wuxiaolongah/article/details/126410190